public static void AssertIsValid(string password)
 {
     AssertionConcern.AssertArgumentNotNull(password, Errors.InvalidUserPassword);
 }
Пример #2
0
 protected void SelfAssertArgumentNotNull(object object1, string message)
 {
     AssertionConcern.AssertArgumentNotNull(object1, message);
 }