Beispiel #1
0
 public bool Update(Medicamento entity)
 {
     try
     {
         DB.ActualizarMedicamento(entity.Id, entity.Nombre, entity.Descripcion, entity.Tipo, entity.Precio);
         return(true);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }