コード例 #1
0
 public EngineeringSpecialtyProvideService()
 {
     this._PMContext = new PMContext();
     this._DB        = new BaseRepository <EngineeringSpecialtyProvideEntity>(this._PMContext);
 }
コード例 #2
0
ファイル: NotificationService.cs プロジェクト: sethHome/House
 public NotificationService()
 {
     this._PMContext = new PMContext();
     this._DB        = new BaseRepository <NotificationEntity>(this._PMContext);
 }
コード例 #3
0
 public PMObjectProcessService()
 {
     this._PMContext = new PMContext();
     this._DB        = new BaseRepository <ObjectProcessEntity>(this._PMContext);
 }
コード例 #4
0
 public ProjectService()
 {
     _PMContext = new PMContext();
     this._DB   = new BaseRepository <ProjectEntity>(_PMContext);
 }
コード例 #5
0
ファイル: CustomerService.cs プロジェクト: sethHome/House
 public CustomerService()
 {
     this._PMContext = new PMContext();
     this._DB        = new BaseRepository <CustomerEntity>(_PMContext);
 }
コード例 #6
0
 public CarUseService()
 {
     this._PMContext = new PMContext();
     this._DB        = new BaseRepository <CarUseEntity>(this._PMContext);
 }
コード例 #7
0
 public EngineeringResourceService()
 {
     this._PMContext = new PMContext();
     this._DB        = new BaseRepository <EngineeringResourceEntity>(this._PMContext);
 }
コード例 #8
0
 public StatisticsService()
 {
     this._PMContext = new PMContext();
 }
コード例 #9
0
 public ContractPayeeService()
 {
     this._PMContext = new PMContext();
     this._DB        = new BaseRepository <ContractPayeeEntity>(this._PMContext);
 }
コード例 #10
0
 public EngineeringVolumeCheckService()
 {
     this._PMContext = new PMContext();
     this._DB        = new BaseRepository <EngineeringVolumeCheckEntity>(this._PMContext);
 }
コード例 #11
0
ファイル: BidService.cs プロジェクト: sethHome/House
 public BidService()
 {
     this._PMContext = new PMContext();
     this._DB        = new BaseRepository <BidEntity>(this._PMContext);
 }
コード例 #12
0
ファイル: FormChangeService.cs プロジェクト: sethHome/House
 public FormChangeService()
 {
     this._PMContext = new PMContext();
     this._DB        = new BaseRepository <FormChangeEntity>(this._PMContext);
 }