13 lines
826 B
C#
13 lines
826 B
C#
namespace BMA.EHR.Recruit.Service.Core
|
|
{
|
|
public class GlobalMessages
|
|
{
|
|
public const string FileNotFoundOnServer = "ไม่พบไฟล์ในระบบ!!";
|
|
public const string CannotInsertToDatabase = "ไม่สามารถบันทึกลงฐานข้อมูลได้!!";
|
|
public const string InvalidRequestParam = "Request parameter ไม่ถูกต้อง!!";
|
|
public const string NoFileToUpload = "ไม่พบไฟล์เพื่อทำการอัพโหลด";
|
|
public const string DataNotFound = "ไม่พบข้อมูลในระบบ";
|
|
|
|
public const string InvalidExamScore = "ไม่พบข้อมูลผลการสอบ กรุณาตรวจสอบความถูกต้องอีกครั้ง!";
|
|
}
|
|
}
|