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