33 lines
1.8 KiB
C#
33 lines
1.8 KiB
C#
namespace BMA.EHR.Domain.Shared
|
|
{
|
|
public class GlobalMessages
|
|
{
|
|
public static readonly string Success = "สำเร็จ";
|
|
|
|
public static readonly string Error = "เกิดข้อผิดพลาด";
|
|
|
|
public static readonly string DataNotFound = "ไม่พบข้อมูลในระบบ";
|
|
|
|
public static readonly string NotAuthorized = "กรุณาเข้าสู่ระบบก่อนใช้งาน!";
|
|
|
|
public static readonly string ForbiddenAccess = "คุณไม่ได้รับอนุญาติให้เข้าใช้งาน!";
|
|
|
|
public static readonly string ExceptionOccured = "เกิดข้อผิดพลาดขึ้นในระบบ กรุณาติดต่อผู้ดูแลระบบ!";
|
|
|
|
#region " Meta Data "
|
|
|
|
public static readonly string DataExist5 = "เนื่องจากมีการกำหนดวันหยุดในการทำงาน 5 วันอยู่";
|
|
|
|
public static readonly string DataExist6 = "เนื่องจากมีการกำหนดวันหยุดในการทำงาน 6 วันอยู่";
|
|
|
|
public static readonly string NameDupicate = "ชื่อวันหยุดนี้มีอยู่ในระบบอยู่แล้ว";
|
|
|
|
public static readonly string HolidayOfYearNotFound = "ไม่พบข้อมูลวันหยุดในปีที่คุณระบุ";
|
|
|
|
public static readonly string HolidayOfYearNotCopy = "ไม่สามารถคัดลอกวันหยุดย้อนหลังได้";
|
|
|
|
public static readonly string DestinationHolidayIsExist = "ข้อมูลวันหยุดในปีที่ระบุมีอยู่แล้ว";
|
|
|
|
#endregion
|
|
}
|
|
}
|