コード例 #1
0
 public void UpdateTransportDetailModel(TransportRecordDetailModel model)
 {
     using (SQLDBDataContext context = new SQLDBDataContext())
     {
         TransportRecordDetail detail = context.TransportRecordDetail.FirstOrDefault(x => x.ID == model.ID);
         if (detail == null)
         {
             return;
         }
         detail.DetailNo     = model.DetailNo;
         detail.PackageName  = model.PackageName;
         detail.Quantity     = model.Quantity;
         detail.Volume       = model.Volume;
         detail.ReceiptCount = model.ReceiptCount;
         detail.Comment      = model.Comment;
         context.SubmitChanges();
     }
 }
コード例 #2
0
 public TransportRecordDetailModel GetTransportRecordDetailModel(long id)
 {
     using (SQLDBDataContext context = new SQLDBDataContext())
     {
         TransportRecordDetail detail = context.TransportRecordDetail.FirstOrDefault(x => x.ID == id);
         return(new TransportRecordDetailModel()
         {
             DetailNo = detail.DetailNo,
             ID = detail.ID,
             PackageName = detail.PackageName,
             Quantity = detail.Quantity,
             TransportRecordID = detail.TransportRecordID,
             Volume = detail.Volume,
             Comment = detail.Comment,
             ReceiptCount = detail.ReceiptCount
         });
     }
 }