- XOR-Logik hinzugefügt, um zu prüfen, ob ValidFrom und ValidTo Null sind - Logik hinzugefügt, um zu kontrollieren, dass ValidFrom kleiner als ValidTo ist
14 lines
710 B
C#
14 lines
710 B
C#
namespace DigitalData.UserManager.Application
|
|
{
|
|
public static class Key
|
|
{
|
|
public static readonly string UserNotFoundInLocalDB = "UserNotFoundInLocalDB";
|
|
public static readonly string GroupNotFound = "GroupNotFound";
|
|
public static readonly string GroupAlreadyExists = "GroupAlreadyExists";
|
|
public static readonly string UserAlreadyExists = "UserAlreadyExists";
|
|
public static readonly string UserNotFound = "UserNotFound";
|
|
public static readonly string UnauthorizedUser = "UnauthorizedUser";
|
|
public static readonly string DateRangeNotXNOR = "DateRangeNotXNOR";
|
|
public static readonly string InvalidDateRange = "InvalidDateRange";
|
|
}
|
|
} |