Exemplo n.º 1
0
 public JobSchemaController()
 {
     this._IJobSchemaRepository = new JobSchemaRepository(new WorkersInMotionDB());
     this._IJobRepository       = new JobRepository(new WorkersInMotionDB());
     this._IUserRepository      = new UserRepository(new WorkersInMotionDB());
     //   this._IGroupRepository = new GroupRepository(new WorkersInMotionContext());
 }
 public JobSchemaController()
 {
     this._IJobSchemaRepository = new JobSchemaRepository(new WorkersInMotionDB());
     this._IJobRepository = new JobRepository(new WorkersInMotionDB());
     this._IUserRepository = new UserRepository(new WorkersInMotionDB());
     //   this._IGroupRepository = new GroupRepository(new WorkersInMotionContext());
 }
Exemplo n.º 3
0
 public JobController(WorkersInMotionDB context)
 {
     this._IPlaceRepository = new PlaceRepository(context);
     this._IMarketRepository = new MarketRepository(context);
     this._IRegionRepository = new RegionRepository(context);
     this._ITerritoryRepository = new TerritoryRepository(context);
     this._IJobRepository = new JobRepository(context);
     this._IJobSchemaRepository = new JobSchemaRepository(context);
 }
 public JobDetailsController()
 {
     this._IJobRepository = new JobRepository(new WorkersInMotionDB());
     this._IJobSchemaRepository = new JobSchemaRepository(new WorkersInMotionDB());
     this._IPlaceRepository = new PlaceRepository(new WorkersInMotionDB());
     this._IMarketRepository = new MarketRepository(new WorkersInMotionDB());
     this._IRegionRepository = new RegionRepository(new WorkersInMotionDB());
     this._ITerritoryRepository = new TerritoryRepository(new WorkersInMotionDB());
     this._IUserRepository = new UserRepository(new WorkersInMotionDB());
 }
Exemplo n.º 5
0
 public JobDetailsController(WorkersInMotionDB context)
 {
     this._IPlaceRepository     = new PlaceRepository(context);
     this._IMarketRepository    = new MarketRepository(context);
     this._IRegionRepository    = new RegionRepository(context);
     this._ITerritoryRepository = new TerritoryRepository(context);
     this._IJobRepository       = new JobRepository(context);
     this._IJobSchemaRepository = new JobSchemaRepository(context);
     this._IUserRepository      = new UserRepository(context);
 }
Exemplo n.º 6
0
 public AssignJobController(WorkersInMotionDB context)
 {
     this._IGlobalUserRepository = new GlobalUserRepository(context);
     this._IPlaceRepository      = new PlaceRepository(context);
     this._IMarketRepository     = new MarketRepository(context);
     this._IRegionRepository     = new RegionRepository(context);
     this._ITerritoryRepository  = new TerritoryRepository(context);
     this._IJobRepository        = new JobRepository(context);
     this._IJobSchemaRepository  = new JobSchemaRepository(context);
     // this._IGroupRepository = new GroupRepository(context);
 }
 public AssignJobController(WorkersInMotionDB context)
 {
     this._IGlobalUserRepository = new GlobalUserRepository(context);
     this._IPlaceRepository = new PlaceRepository(context);
     this._IMarketRepository = new MarketRepository(context);
     this._IRegionRepository = new RegionRepository(context);
     this._ITerritoryRepository = new TerritoryRepository(context);
     this._IJobRepository = new JobRepository(context);
     this._IJobSchemaRepository = new JobSchemaRepository(context);
     // this._IGroupRepository = new GroupRepository(context);
 }
Exemplo n.º 8
0
 public JobSchemaController(WorkersInMotionDB context)
 {
     this._IJobSchemaRepository = new JobSchemaRepository(context);
     this._IJobRepository       = new JobRepository(context);
     this._IUserRepository      = new UserRepository(context);
 }
 public JobSchemaController(WorkersInMotionDB context)
 {
     this._IJobSchemaRepository = new JobSchemaRepository(context);
     this._IJobRepository = new JobRepository(context);
     this._IUserRepository = new UserRepository(context);
 }