Esempio n. 1
0
        public VideoController(IProjectService projectService, IProjectMappingService projectMappingService, UserFactory userFactory,
                               IProjectImageService projectImageService, IProjectImageMappingService projectImageMappingService)
        {
            this._projectService        = projectService;
            this._projectMappingService = projectMappingService;

            this._projectImageService        = projectImageService;
            this._projectImageMappingService = projectImageMappingService;

            this._userFactory = userFactory;
            this._userId      = _userFactory.GetUserId(User.Identity.Name);
        }
Esempio n. 2
0
        public VideoController(IProjectService projectService, IProjectMappingService projectMappingService, UserFactory userFactory,
            IProjectImageService projectImageService, IProjectImageMappingService projectImageMappingService)
        {
            this._projectService = projectService;
            this._projectMappingService = projectMappingService;

            this._projectImageService = projectImageService;
            this._projectImageMappingService = projectImageMappingService;

            this._userFactory = userFactory;
            this._userId = _userFactory.GetUserId(User.Identity.Name);
        }
Esempio n. 3
0
 public AdminController(IMembershipService membershipService, ICookieHelper cookieHelper, IActiveDirectoryService activeDirectoryService,
                        IProjectService projectService, IEmailService emailService, IProjectMappingService projectMappingService, IGenericService genericService,
                        IAdminDashboardService dashboardService, IMappingService mappingService, IActiveDirectoryService iactiveDirectoryService)
 {
     this._projectService          = projectService;
     this.emailService             = emailService;
     this._cookieHelper            = cookieHelper;
     this._activeDirectoryService  = activeDirectoryService;
     this._projectMappingService   = projectMappingService;
     this._genericService          = genericService;
     this._dashboardService        = dashboardService;
     this._mappingService          = mappingService;
     this._iactiveDirectoryService = iactiveDirectoryService;
 }
Esempio n. 4
0
        public ProjectController(IProjectService projectService, IProjectMappingService projectMappingService,
                                 IProjectImageService projectImageService, IProjectImageMappingService projectImageMappingService,
                                 INewsService newsService, INewsMappingService newsMappingService, UserFactory userFactory)
        {
            this._projectService        = projectService;
            this._projectMappingService = projectMappingService;

            this._projectImageService        = projectImageService;
            this._projectImageMappingService = projectImageMappingService;

            this._newsService        = newsService;
            this._newsMappingService = newsMappingService;

            this._userFactory = userFactory;
            this._userId      = _userFactory.GetUserId(User.Identity.Name);
        }
Esempio n. 5
0
        public ProjectController(IProjectService projectService, IProjectMappingService projectMappingService,
            IProjectImageService projectImageService, IProjectImageMappingService projectImageMappingService,
            IOtherPageSEOService otherPageSeoService)
        {
            this._projectService = projectService;
            this._projectMappingService = projectMappingService;

            this._projectImageService = projectImageService;
            this._projectImageMappingService = projectImageMappingService;

            this._otherPageSeoService = otherPageSeoService;

            this.LanguageId = int.Parse(Cookies.ReadCookie("PenDesign:Language", "129"));

            ItemPerPage = AppSettings.ItemsPerPage;
        }
Esempio n. 6
0
        public ProjectController(IProjectService projectService, IProjectMappingService projectMappingService,
            IProjectImageService projectImageService, IProjectImageMappingService projectImageMappingService,
            INewsService newsService, INewsMappingService newsMappingService, UserFactory userFactory)
        {
            this._projectService = projectService;
            this._projectMappingService = projectMappingService;

            this._projectImageService = projectImageService;
            this._projectImageMappingService = projectImageMappingService;

            this._newsService = newsService;
            this._newsMappingService = newsMappingService;

            this._userFactory = userFactory;
            this._userId = _userFactory.GetUserId(User.Identity.Name);
        }
Esempio n. 7
0
 public ProjectSummaryService(IDataContextFactory dataContextFactory, IProjectResourceService projectResourceService,
                              IGenericService genericService, IProjectComplaintService projectComplaintService, IPaymentDetailsService paymentDetailsService,
                              IChangeRequestDetailsService changeRequestDetailsService, IInfrastructureDetailsService infrastructureDetailsService,
                              IProjectService projectService, IProjectMappingService projectMappingService
                              )
 {
     this.context                  = dataContextFactory.Create(ConnectionType.Ip);
     _projectResourceService       = projectResourceService;
     _projectComplaintService      = projectComplaintService;
     _genericService               = genericService;
     _paymentDetailsService        = paymentDetailsService;
     _changeRequestDetailsService  = changeRequestDetailsService;
     _infrastructureDetailsService = infrastructureDetailsService;
     _projectService               = projectService;
     _projectMappingService        = projectMappingService;
 }
Esempio n. 8
0
        public VideoController(IProjectService projectService, IProjectMappingService projectMappingService,
                               IProjectImageService projectImageService, IProjectImageMappingService projectImageMappingService,
                               IOtherPageSEOService otherPageSeoService)
        {
            this._projectService        = projectService;
            this._projectMappingService = projectMappingService;

            this._projectImageService        = projectImageService;
            this._projectImageMappingService = projectImageMappingService;

            this._otherPageSeoService = otherPageSeoService;

            this.LanguageId = int.Parse(Cookies.ReadCookie("PenDesign:Language", "129"));

            ItemPerPage = AppSettings.ItemsPerPage;
        }
Esempio n. 9
0
        public ConstructionController(IProjectService projectService, IProjectMappingService projectMappingService,
                                      IProjectImageService projectImageService, IProjectImageMappingService projectImageMappingService,
                                      INewsService newsService, INewsMappingService newsMappingService,
                                      IOtherPageSEOService otherPageSeoService)
        {
            this._projectService        = projectService;
            this._projectMappingService = projectMappingService;

            this._projectImageService        = projectImageService;
            this._projectImageMappingService = projectImageMappingService;

            this._newsService        = newsService;
            this._newsMappingService = newsMappingService;

            this._otherPageSeoService = otherPageSeoService;

            ItemPerPage = AppSettings.ItemsPerPage;

            LanguageId = int.Parse(Cookies.ReadCookie("PenDesign:Language", "129"));
        }
Esempio n. 10
0
 public ProjectService(IUnitOfWork unitOfWork, IProjectMappingService mappingService)
 {
     _unitOfWork = unitOfWork;
     _mappingService = mappingService;
 }