示例#1
0
 public void SaveAsumptions(List <Assumptions> assumptions)
 {
     using (Estimator dbContext = new Estimator())
     {
         dbContext.BulkInsert(assumptions);
         dbContext.SaveChanges();
     }
 }
示例#2
0
 public void SaveOutScope(List <OutScope> outScopeItems)
 {
     using (Estimator dbContext = new Estimator())
     {
         dbContext.BulkInsert(outScopeItems);
         dbContext.SaveChanges();
     }
 }
示例#3
0
 public void  SaveEstimateVersionDetails(List <VersionDetails_Phased> estimateVersionDetail)
 {
     using (Estimator dbContext = new Estimator())
     {
         dbContext.BulkInsert(estimateVersionDetail);
         dbContext.SaveChanges();
     }
 }