예제 #1
0
 public override bool LoadObjs(DGObjects objs, DbContext dbContext)
 {
     GeologyDGObjectLoader loader2 = new GeologyDGObjectLoader(dbContext);
     bool success = loader2.LoadSoilProperties(objs);
     return success;
 }
예제 #2
0
파일: Water.cs 프로젝트: iS3-Project/iS3
 public override bool LoadObjs(DGObjects objs, DbContext dbContext)
 {
     GeologyDGObjectLoader loader2 = new GeologyDGObjectLoader(dbContext);
     bool success = loader2.LoadPhreaticWaters(objs);
     return success;
 }
예제 #3
0
 public override bool LoadObjs(DGObjects objs, DbContext dbContext)
 {
     GeologyDGObjectLoader loader2 = new GeologyDGObjectLoader(dbContext);
     bool success = loader2.LoadStratumSections(objs);
     return success;
 }
예제 #4
0
파일: Borehole.cs 프로젝트: iS3-Project/iS3
 public override bool LoadObjs(DGObjects objs, DbContext dbContext)
 {
     GeologyDGObjectLoader loader = new GeologyDGObjectLoader(dbContext);
     bool success = loader.LoadBoreholes(objs);
     return success;
 }