Ejemplo n.º 1
0
 public bool Update(Mascota entity)
 {
     try
     {
         DB.ActualizarMascota(entity.Identificacion, entity.Nombre, entity.Tipo, entity.Genero, entity.Raza, entity.Fecha_Nacimiento, entity.ExpedienteId);
         return(true);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }