public SectionsController(ApplicationDbContext context, IDepartmentsService departmentsService, ISectionsService sectionsService, UserManager <ApplicationUser> userManager)
 {
     this.context            = context;
     this.departmentsService = departmentsService;
     this.sectionsService    = sectionsService;
     this.userManager        = userManager;
 }
Example #2
0
 public SectionsController
     (ISectionsService sections,
     IThemesService themes,
     UserManager <User> userManager)
 {
     this.sections    = sections;
     this.themes      = themes;
     this.userManager = userManager;
 }
Example #3
0
 public ReviewsController(
     ISectionsService sectionsService,
     IUsersService usersService,
     IMapper mapper)
 {
     this.sectionsService = sectionsService;
     this.usersService    = usersService;
     this.mapper          = mapper;
 }
 public DashboardController(
     IApplicationUserService applicationUserService, ISchedulesService schedulesService, ICompaniesService companiesService, ISectionsService sectionsService, ITeamsService teamsService)
 {
     this.applicationUserService = applicationUserService;
     this.schedulesService       = schedulesService;
     this.companiesService       = companiesService;
     this.sectionsService        = sectionsService;
     this.teamsService           = teamsService;
 }
Example #5
0
 public SectionsController(
     ISectionsService sectionsService,
     IEntriesService entriesService,
     IParitiesService paritiesService,
     IUsersService usersService,
     IMapper mapper)
 {
     this.sectionsService = sectionsService;
     this.entriesService  = entriesService;
     this.paritiesService = paritiesService;
     this.usersService    = usersService;
     this.mapper          = mapper;
 }
Example #6
0
 public EmployeesController(
     IApplicationUserService userService,
     ICompaniesService companiesService,
     ISectionsService sectionsService,
     ITeamsService teamService,
     UserManager <ApplicationUser> userManager)
 {
     this.userService      = userService;
     this.companiesService = companiesService;
     this.sectionsService  = sectionsService;
     this.teamService      = teamService;
     this.userManager      = userManager;
 }
 public SectionsController(ISectionsService SectionsService, IMapper mapper)
 {
     _SectionsService = SectionsService;
     _mapper          = mapper;
 }
Example #8
0
 public HomeController(ISectionsService sections)
 {
     this.sections = sections;
 }
 public AdvertisementController()
 {
     this._uow = new UnitOfWork();
     this._sectionService = new SectionsService(this._uow);
     this._advertisementService = new AdvertisementService(this._uow);
 }
Example #10
0
 public SectionsController(ISectionsService sections)
 {
     this.sections = sections;
 }