public bool ChangeMeat(MeatDAO meat)
 {
     return(data.ChangeMeat(MeatMapper.MapToMeat(meat)));
 }
 public bool InsertMeat(MeatDAO meat)
 {
     return(data.InsertMeat(MeatMapper.MapToMeat(meat)));
 }
 public bool DeleteMeat(MeatDAO meat)
 {
     return(data.DeleteMeat(MeatMapper.MapToMeat(meat)));
 }