public EngineeringSpecialtyProvideService()
 {
     this._PMContext = new PMContext();
     this._DB        = new BaseRepository <EngineeringSpecialtyProvideEntity>(this._PMContext);
 }
示例#2
0
 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
 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);
 }
 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);
 }
 public EngineeringVolumeCheckService()
 {
     this._PMContext = new PMContext();
     this._DB        = new BaseRepository <EngineeringVolumeCheckEntity>(this._PMContext);
 }
示例#11
0
 public BidService()
 {
     this._PMContext = new PMContext();
     this._DB        = new BaseRepository <BidEntity>(this._PMContext);
 }
示例#12
0
 public FormChangeService()
 {
     this._PMContext = new PMContext();
     this._DB        = new BaseRepository <FormChangeEntity>(this._PMContext);
 }