示例#1
0
 public async Task <int> Update(GoodsDeliveryNoteDetail goodsDeliveryNoteDetail)
 {
     return(await Context.SaveChangesAsync());
 }
示例#2
0
 public async Task <int> Insert(GoodsDeliveryNoteDetail goodsDeliveryNoteDetail)
 {
     _goodsDeliveryNoteDetailRepository.Create(goodsDeliveryNoteDetail);
     return(await Context.SaveChangesAsync());
 }