コード例 #1
0
 public bool Delete(Price model)
 {
     return(_priceDAL.Delete(model) > 0);
 }
コード例 #2
0
 public void Detele(int id)
 {
     _context.Delete(new PriceList {
         Id = id
     });
 }