Exemplo n.º 1
0
 public TerritoryController(WorkersInMotionDB context)
 {
     this._IRegionRepository     = new RegionRepository(context);
     this._IMarketRepository     = new MarketRepository(context);
     this._ITerritoryRepository  = new TerritoryRepository(context);
     this._IGlobalUserRepository = new GlobalUserRepository(context);
 }
Exemplo n.º 2
0
 public PeopleController(WorkersInMotionDB context)
 {
     this._IPlaceRepository       = new PlaceRepository(context);
     this._IPeopleRepository      = new PeopleRepository(context);
     this._IMarketRepository      = new MarketRepository(context);
     this._IUserProfileRepository = new UserProfileRepository(context);
 }
Exemplo n.º 3
0
 public POController(WorkersInMotionDB context)
 {
     this._IJobRepository       = new JobRepository(context);
     this._IPORepository        = new PORepository(context);
     this._IPlaceRepository     = new PlaceRepository(context);
     this._IMarketRepository    = new MarketRepository(context);
     this._ITerritoryRepository = new TerritoryRepository(context);
     this._IRegionRepository    = new RegionRepository(context);
 }
Exemplo n.º 4
0
 public ServicePointController(WorkersInMotionDB context)
 {
     this._IPlaceRepository       = new PlaceRepository(context);
     this._IPeopleRepository      = new PeopleRepository(context);
     this._IMarketRepository      = new MarketRepository(context);
     this._IUserProfileRepository = new UserProfileRepository(context);
     this._ITerritoryRepository   = new TerritoryRepository(context);
     this._IRegionRepository      = new RegionRepository(context);
 }
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);
 }
Exemplo n.º 7
0
 public JobStatusController(WorkersInMotionDB context)
 {
     this._IGlobalUserRepository  = new GlobalUserRepository(context);
     this._IUserProfileRepository = new UserProfileRepository(context);
     this._IPlaceRepository       = new PlaceRepository(context);
     this._IMarketRepository      = new MarketRepository(context);
     this._ITerritoryRepository   = new TerritoryRepository(context);
     this._IRegionRepository      = new RegionRepository(context);
     this._IUserRepository        = new UserRepository(context);
     this._IJobRepository         = new JobRepository(context);
     this._IPORepository          = new PORepository(context);
 }
Exemplo n.º 8
0
 public MyCompanyController(WorkersInMotionDB context)
 {
     this._IUserProfileRepository = new UserProfileRepository(context);
     //  this._IGroupRepository = new GroupRepository(context);
     this._IRegionRepository     = new RegionRepository(context);
     this._ITerritoryRepository  = new TerritoryRepository(context);
     this._IUserRepository       = new UserRepository(context);
     this._IGlobalUserRepository = new GlobalUserRepository(context);
     this._IOrganizationSubscriptionRepository = new OrganizationSubscriptionRepository(context);
     this._IOrganizationRepository             = new OrganizationRepository(context);
     this._IUserSubscriptionRepository         = new UserSubscriptionRepository(context);
     this._IMarketRepository = new MarketRepository(context);
 }
 public OrganizationSubscriptionRepository(WorkersInMotionDB context)
 {
     this.context = context;
 }
Exemplo n.º 10
0
        public GlobalUserRepository()
        {
            WorkersInMotionDB context = new WorkersInMotionDB();

            this.context = context;
        }
Exemplo n.º 11
0
 public UserSubscriptionRepository(WorkersInMotionDB context)
 {
     this.context = context;
 }
Exemplo n.º 12
0
 public UserProfileRepository(WorkersInMotionDB context)
 {
     this.context          = context;
     this._IUserRepository = new UserRepository(new WorkersInMotionDB());
 }
Exemplo n.º 13
0
 public RegionRepository(WorkersInMotionDB context)
 {
     this.context = context;
 }
Exemplo n.º 14
0
 public JobSchemaController(WorkersInMotionDB context)
 {
     this._IJobSchemaRepository = new JobSchemaRepository(context);
     this._IJobRepository       = new JobRepository(context);
     this._IUserRepository      = new UserRepository(context);
 }
Exemplo n.º 15
0
 public GlobalUserRepository(WorkersInMotionDB context)
 {
     this.context = context;
 }
Exemplo n.º 16
0
 public PlaceRepository(WorkersInMotionDB context)
 {
     this.context = context;
 }
Exemplo n.º 17
0
 public MarketRepository(WorkersInMotionDB context)
 {
     this.context = context;
 }
Exemplo n.º 18
0
 public JobSchemaRepository(WorkersInMotionDB context)
 {
     this.context = context;
 }
Exemplo n.º 19
0
        public PORepository()
        {
            WorkersInMotionDB context = new WorkersInMotionDB();

            this.context = context;
        }
Exemplo n.º 20
0
 public TerritoryRepository(WorkersInMotionDB context)
 {
     this.context = context;
 }
 public OrganizationSubscriptionController(WorkersInMotionDB context)
 {
     this._IOrganizationSubscriptionRepository = new OrganizationSubscriptionRepository(context);
     this._IOrganizationRepository             = new OrganizationRepository(context);
     this._IGlobalUserRepository = new GlobalUserRepository(context);
 }
 public SessionExpireFilterAttribute(WorkersInMotionDB context)
 {
     this._IUserRepository = new UserRepository(context);
 }