public TerritoryController(WorkersInMotionDB context) { this._IRegionRepository = new RegionRepository(context); this._IMarketRepository = new MarketRepository(context); this._ITerritoryRepository = new TerritoryRepository(context); this._IGlobalUserRepository = new GlobalUserRepository(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); }
public MarketController(WorkersInMotionDB context) { this._IPlaceRepository = new PlaceRepository(context); this._IPeopleRepository = new PeopleRepository(context); this._IMarketRepository = new MarketRepository(context); this._IUserProfileRepository = new UserProfileRepository(context); this._IRegionRepository = new RegionRepository(context); this._ITerritoryRepository = new TerritoryRepository(context); this._IUserRepository = new UserRepository(context); this._IGlobalUserRepository = new GlobalUserRepository(context); }
public JobStatusController() { this._IJobRepository = new JobRepository(new WorkersInMotionDB()); this._IGlobalUserRepository = new GlobalUserRepository(new WorkersInMotionDB()); this._IUserProfileRepository = new UserProfileRepository(new WorkersInMotionDB()); this._IPlaceRepository = new PlaceRepository(new WorkersInMotionDB()); this._IMarketRepository = new MarketRepository(new WorkersInMotionDB()); this._ITerritoryRepository = new TerritoryRepository(new WorkersInMotionDB()); this._IRegionRepository = new RegionRepository(new WorkersInMotionDB()); this._IUserRepository = new UserRepository(new WorkersInMotionDB()); this._IPORepository = new PORepository(new WorkersInMotionDB()); }
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); }
public OrganizationController(WorkersInMotionDB context) { this._IOrganizationRepository = new OrganizationRepository(context); this._IUserProfileRepository = new UserProfileRepository(context); this._IUserRepository = new UserRepository(context); this._IGlobalUserRepository = new GlobalUserRepository(context); this._IRegionRepository = new RegionRepository(context); this._ITerritoryRepository = new TerritoryRepository(context); // this._IGroupRepository = new GroupRepository(context); this._IOrganizationSubscriptionRepository = new OrganizationSubscriptionRepository(context); this._IUserSubscriptionRepository = new UserSubscriptionRepository(context); this._IMarketRepository = new MarketRepository(context); }
public UserActivitiesController(WorkersInMotionDB context) { this._IOrganizationRepository = new OrganizationRepository(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); }
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 MyCompanyController() { this._IUserProfileRepository = new UserProfileRepository(new WorkersInMotionDB()); // this._IGroupRepository = new GroupRepository(new WorkersInMotionContext()); this._IRegionRepository = new RegionRepository(new WorkersInMotionDB()); this._ITerritoryRepository = new TerritoryRepository(new WorkersInMotionDB()); this._IUserRepository = new UserRepository(new WorkersInMotionDB()); this._IGlobalUserRepository = new GlobalUserRepository(new WorkersInMotionDB()); this._IOrganizationSubscriptionRepository = new OrganizationSubscriptionRepository(new WorkersInMotionDB()); this._IOrganizationRepository = new OrganizationRepository(new WorkersInMotionDB()); this._IUserSubscriptionRepository = new UserSubscriptionRepository(new WorkersInMotionDB()); this._IMarketRepository = new MarketRepository(new WorkersInMotionDB()); this._IJobRepository = new JobRepository(new WorkersInMotionDB()); }
public CustomerViewController(WorkersInMotionDB context) { this._IOrganizationRepository = new OrganizationRepository(context); this._IUserRepository = new UserRepository(context); this._IOrganizationSubscriptionRepository = new OrganizationSubscriptionRepository(context); this._IUserSubscriptionRepository = new UserSubscriptionRepository(context); this._IPlaceRepository = new PlaceRepository(context); this._IPeopleRepository = new PeopleRepository(context); this._IMarketRepository = new MarketRepository(context); this._IUserProfileRepository = new UserProfileRepository(context); this._IRegionRepository = new RegionRepository(context); this._ITerritoryRepository = new TerritoryRepository(context); this._IGlobalUserRepository = new GlobalUserRepository(context); }
public StoreVisitController() { this._IOrganizationRepository = new OrganizationRepository(new WorkersInMotionDB()); this._IPlaceRepository = new PlaceRepository(new WorkersInMotionDB()); this._IUserProfileRepository = new UserProfileRepository(new WorkersInMotionDB()); this._IPeopleRepository = new PeopleRepository(new WorkersInMotionDB()); this._IMarketRepository = new MarketRepository(new WorkersInMotionDB()); this._IRegionRepository = new RegionRepository(new WorkersInMotionDB()); this._ITerritoryRepository = new TerritoryRepository(new WorkersInMotionDB()); this._IJobRepository = new JobRepository(new WorkersInMotionDB()); this._IUserRepository = new UserRepository(new WorkersInMotionDB()); this._IGlobalUserRepository = new GlobalUserRepository(new WorkersInMotionDB()); this._IPORepository = new PORepository(new WorkersInMotionDB()); }
public OrganizationSubscriptionController(WorkersInMotionDB context) { this._IOrganizationSubscriptionRepository = new OrganizationSubscriptionRepository(context); this._IOrganizationRepository = new OrganizationRepository(context); this._IGlobalUserRepository = new GlobalUserRepository(context); }
public GroupController(WorkersInMotionContext context) { this._IGroupRepository = new GroupRepository(context); this._IUserProfileRepository = new UserProfileRepository(context); this._IGlobalUserRepository = new GlobalUserRepository(context); }