Beispiel #1
0
 internal AndIsNotEmpty(Func <TEntity, TValue> selector, AndIsNotEmptyType type, Func <TEntity, bool> condition, string message, params object[] args)
 {
     Type        = type;
     Selector    = selector;
     Message     = message;
     MessageArgs = args;
     Condition   = condition;
 }
Beispiel #2
0
 internal AndIsNotEmpty(Func <TEntity, TValue> selector, AndIsNotEmptyType type, bool condition, string message, params object[] args)
     : this(selector, type, c => condition, message, args)
 {
 }