public void DeleteSellInformation(SellInformation sellInformation)
 {
     _myContext.Remove(sellInformation);
 }
 public void AddSellInformation(SellInformation sellInformation)
 {
     _myContext.Add(sellInformation);
 }