26 lines
2.4 KiB
C#
26 lines
2.4 KiB
C#
namespace BMA.EHR.Recurit.Exam.Service.Core
|
|
{
|
|
public class GlobalMessages
|
|
{
|
|
public const string Success = "Success";
|
|
public const string FileNotFoundOnServer = "ไม่พบไฟล์ในระบบ!!";
|
|
public const string CannotInsertToDatabase = "ไม่สามารถบันทึกลงฐานข้อมูลได้!!";
|
|
public const string InvalidRequestParam = "Request parameter ไม่ถูกต้อง!!";
|
|
public const string NoFileToUpload = "ไม่พบไฟล์เพื่อทำการอัพโหลด";
|
|
public const string DataExist = "มีข้อมูลดังกล่าวอยู่ในระบบแล้ว";
|
|
public const string NameDupicate = "ชื่อวันหยุดนี้มีอยู่ในระบบอยู่แล้ว";
|
|
public const string ExamNotFound = "ไม่พบข้อมูลการรับสมัครสอบ";
|
|
public const string PositionExamNotFound = "ไม่พบข้อมูลตำแหน่งการรับสมัครสอบ";
|
|
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 = "ไม่พบข้อมูลตำบล/แขวง";
|
|
public const string CMSNotFound = "ไม่พบข้อมูล CMS";
|
|
}
|
|
}
|