Exemple #1
0
 public static bool CheckExistsPhone(string phone)
 {
     if (string.IsNullOrEmpty(phone))
     {
         return(false);
     }
     return(dal.CheckExistsPhone(phone));
 }