19 lines
1.6 KiB
C#
19 lines
1.6 KiB
C#
namespace BMA.EHR.Recurit.Exam.Service.Core
|
|
{
|
|
public class GlobalMessages
|
|
{
|
|
public const string DataExist = "มีข้อมูลดังกล่าวอยู่ในระบบแล้ว";
|
|
public const string NameDupicate = "ชื่อวันหยุดนี้มีอยู่ในระบบอยู่แล้ว";
|
|
public const string ExamNotFound = "ไม่พบข้อมูลการรับสมัครสอบ";
|
|
public const string CandidateNotFound = "ไม่พบข้อมูลผู้สมัครสอบ";
|
|
public const string CareerNotFound = "ไม่พบข้อมูลประวัติการทำงาน/ฝึกงาน";
|
|
public const string EducationNotFound = "ไม่พบข้อมูลประวัติการศีกษา";
|
|
public const string DistrictNotFound = "ไม่พบข้อมูลเขต/อำเภอ";
|
|
public const string EducationLevelNotFound = "ไม่พบข้อมูลวุฒิการศีกษา";
|
|
public const string PrefixNotFound = "ไม่พบข้อมูลคำนำหน้า";
|
|
public const string ProvinceNotFound = "ไม่พบข้อมูลจังหวัด";
|
|
public const string RelationshipNotFound = "ไม่พบข้อมูลสถานะภาพ";
|
|
public const string ReligionNotFound = "ไม่พบข้อมูลศาสนา";
|
|
public const string SubDistrictNotFound = "ไม่พบข้อมูลตำบล/แขวง";
|
|
}
|
|
}
|