Ejemplo n.º 1
0
 public int InsertarFiles(Dominio.Dtos.filesDTO dto)
 {
     try
     {
         return(filesQuerys.InsertarFiles(dto));
     }
     catch (Exception)
     {
         throw new NotImplementedException();
     }
 }
Ejemplo n.º 2
0
 public bool ActualizarFiles(Dominio.Dtos.filesDTO dto)
 {
     try
     {
         return(filesQuerys.ActualizarFiles(dto));
     }
     catch (Exception)
     {
         throw new NotImplementedException();
     }
 }
Ejemplo n.º 3
0
 public bool ActualizarFiles(Dominio.Dtos.filesDTO dto)
 {
     try
     {
         return(filesLogicaNegocio.ActualizarFiles(dto));
     }
     catch (Exception ex)
     {
         throw ManejoErrores.Handlers.Handlers.ErrorServicios(ex);
     }
 }