Exemple #1
0
 public static int Insert(Usuario _object)
 {
     try
     {
         return(UsuarioFacade.Insert(_object));
     }
     catch (ExceptionBLL bllex)
     {
         throw new ExceptionBLL(bllex, bllex.Message);
     }
 }
 public static void Insert(string nome, string email, string racf, string senha, string rua, string bairro, string numero, string cpf, string rg, string senhaEmail)
 {
     UsuarioFacade.Insert(nome, email, racf, senha, rua, bairro, numero, cpf, rg, senhaEmail);
 }