コード例 #1
0
 public bool ActualizarDepartments(Dominio.Dtos.departmentsDTO dto)
 {
     try
     {
         return(departmentsQuerys.ActualizarDepartments(dto));
     }
     catch (Exception)
     {
         throw new NotImplementedException();
     }
 }
コード例 #2
0
 public bool ActualizarDepartments(Dominio.Dtos.departmentsDTO dto)
 {
     try
     {
         return(departmentsLogicaNegocio.ActualizarDepartments(dto));
     }
     catch (Exception ex)
     {
         throw ManejoErrores.Handlers.Handlers.ErrorServicios(ex);
     }
 }
コード例 #3
0
 public int InsertarDepartments(Dominio.Dtos.departmentsDTO dto)
 {
     try
     {
         return(departmentsQuerys.InsertarDepartments(dto));
     }
     catch (Exception)
     {
         throw new NotImplementedException();
     }
 }