Esempio n. 1
0
 public Authentication(IUserProfileService userProService, ICompanyService companyService,
                       IViewElementService viewElementService, IViewElementRoleService viewElementRoleService, ICompanyChartService companyChartService)
 {
     _userProService         = userProService;
     _companyService         = companyService;
     _viewElementService     = viewElementService;
     _viewElementRoleService = viewElementRoleService;
     _companyChartService    = companyChartService;
 }
Esempio n. 2
0
        public AccountApiController(IAuthentication formsService, IViewElementRoleService viewElementRoleService, ICompanyChartService CompanyChartService,
                                    IUserService userService, IServiceBase <CoreUserLog> userLogService, IUserProfileService userprofileService, IConstantService constantService, IDomainAuthenticationService domainAuthenticationService)
        {
            _membershipService = new AccountMembership();

            _formsService = formsService;

            _viewElementRoleService      = viewElementRoleService;
            _companyChartService         = CompanyChartService;
            _userService                 = userService;
            _userLogService              = userLogService;
            _userProfileService          = userprofileService;
            _constantService             = constantService;
            _domainAuthenticationService = domainAuthenticationService;
        }
Esempio n. 3
0
 public CompanyChartController(ICompanyChartService CompanyIdChartService)
 {
     _CompanyChartService = CompanyIdChartService;
 }
Esempio n. 4
0
 public CompanyChartApiController(ICompanyChartService CompanyService)
 //: base(CompanyService)
 {
     _companyChartService = CompanyService;
 }