Esempio n. 1
0
 public bool InsertarCliente(Cliente cliente)
 {
     try
     {
         clientesRepository.InsertarCliente((Cliente)cliente);
         return(true);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }