Esempio n. 1
0
 public bool Autenticate(string user, string password)
 {
     try
     {
         using (BusinessSeguridad negocio = new BusinessSeguridad())
         {
             return(negocio.Autenticate(user, password));
         }
     }
     catch (Exception ex)
     {
         throw new Exception(ex.Message);
     }
 }