Esempio n. 1
0
 public static void ShorterThan(int value, int minValue, string parameterName)
 {
     if (minValue > value)
     {
         throw new DomainException(DomainPreconditionMessages.GetShorterThan(minValue, parameterName));
     }
 }