public CompanyProfileController(ICompanyProfileService companyProfileService, UserManager <ApplicationUser> userManager, ICompanyInfoService companyInfoService, IAccountTypeService accountTypeService)
 {
     this.companyProfileService = companyProfileService;
     this.userManager           = userManager;
     this.companyInfoService    = companyInfoService;
     this.accountTypeService    = accountTypeService;
 }
 public ProfileReportsController(IAccountTypeService accountTypeService, IReportsCompanyProfileService reportsCompanyProfileService, IReportsCandidateProfileService reportsCandidateProfileService, ICompanyInfoService companyInfoService)
 {
     this.accountTypeService             = accountTypeService;
     this.reportsCompanyProfileService   = reportsCompanyProfileService;
     this.reportsCandidateProfileService = reportsCandidateProfileService;
     this.companyInfoService             = companyInfoService;
 }
Example #3
0
 public ServiceManager(
     IBusinessService business,
     IRoleService role,
     IUserService user,
     IAccountTypeService accountType,
     IGroupService group,
     IAccountService account,
     IClientService client,
     IRelationshipService relationship,
     IUserActivityService userActivity,
     IMenuService menuService,
     IReportService reportService,
     ITransactionCodeService transactionCode,
     ITransactionTypeService transactionType,
     ITransactionService transaction)
 {
     this.Business        = business;
     this.Role            = role;
     this.User            = user;
     this.AccountType     = accountType;
     this.Group           = group;
     this.Account         = account;
     this.Client          = client;
     this.Relationship    = relationship;
     this.UserActivity    = userActivity;
     this.Menu            = menuService;
     this.Report          = reportService;
     this.TransactionCode = transactionCode;
     this.TransactionType = transactionType;
     this.Transaction     = transaction;
 }
Example #4
0
 public CandidateProfileController(ICandidateProfileService candidateProfileService, UserManager <ApplicationUser> userManager, IUserInfoService userInfoService, ICandidatesService candidatesService, IAccountTypeService accountTypeService)
 {
     this.candidateProfileService = candidateProfileService;
     this.userManager             = userManager;
     this.userInfoService         = userInfoService;
     this.candidatesService       = candidatesService;
     this.accountTypeService      = accountTypeService;
 }
Example #5
0
 public FavoriteJobPostingsController(ICandidateFavoriteJobPostingsService candidateFavoriteJobPostingsService, IAccountTypeService accountTypeService, IJobPostingsService jobPostingsService, UserManager <ApplicationUser> userManager, IUserInfoService userInfoService)
 {
     this.candidateFavoriteJobPostingsService = candidateFavoriteJobPostingsService;
     this.accountTypeService = accountTypeService;
     this.jobPostingsService = jobPostingsService;
     this.userManager        = userManager;
     this.userInfoService    = userInfoService;
 }
Example #6
0
 public CategoryController(ICategoriesService categoriesService, IAccountTypeService accountTypeService, UserManager <ApplicationUser> userManager, IUserInfoService userInfoService, ICompanyInfoService companyInfoService, IJobPostingsService jobPostingsService)
 {
     this.categoriesService  = categoriesService;
     this.accountTypeService = accountTypeService;
     this.userManager        = userManager;
     this.userInfoService    = userInfoService;
     this.companyInfoService = companyInfoService;
     this.jobPostingsService = jobPostingsService;
 }
Example #7
0
 public HomeController(
     IAccountService accountService,
     IUserService userService,
     IAccountTypeService accountTypeService)
 {
     _accountService     = accountService;
     _userService        = userService;
     _accountTypeService = accountTypeService;
 }
Example #8
0
 public JobPostingsController(IJobPostingsService jobPostingService, UserManager <ApplicationUser> userManager, IAccountTypeService accountTypeService, ICategoriesService categoriesService, ICompanyInfoService companyInfoService, ICitiesService citiesService, ICandidatesService candidatesService, IUserInfoService userInfoService, IReportsJobPostingService reportsJobPostingService)
 {
     this.jobPostingService        = jobPostingService;
     this.userManager              = userManager;
     this.accountTypeService       = accountTypeService;
     this.categoriesService        = categoriesService;
     this.companyInfoService       = companyInfoService;
     this.citiesService            = citiesService;
     this.candidatesService        = candidatesService;
     this.userInfoService          = userInfoService;
     this.reportsJobPostingService = reportsJobPostingService;
 }
 public ProgramBrandingService(IDatabaseConnectionFactory databaseConnectionFactory, IConfiguration configuration, ILoggerManager logger,
                               IMapper mapper, IPlanProgramAccountLinkingService planProgramAccount, IAccountTypeService accountType, IProgramAccountService programAccount,
                               IPhotos photos)
     : base(databaseConnectionFactory)
 {
     _databaseConnectionFactory = databaseConnectionFactory ?? throw new ArgumentNullException(nameof(databaseConnectionFactory));
     _configuration             = configuration;
     _logger             = logger;
     _mapper             = mapper;
     _planProgramAccount = planProgramAccount;
     _accountType        = accountType;
     _programAccount     = programAccount;
     _photos             = photos;
 }
 public ProgramAccountService(IDatabaseConnectionFactory databaseConnectionFactory, IConfiguration configuration, ILoggerManager logger,
                              IMapper mapper, IPlanProgramAccountLinkingService planProgramAccount, IAccountTypeService accountType, IPrograms program,
                              ISharedJPOSService sharedJPOSService)
     : base(databaseConnectionFactory)
 {
     _databaseConnectionFactory = databaseConnectionFactory ?? throw new ArgumentNullException(nameof(databaseConnectionFactory));
     _configuration             = configuration;
     _logger             = logger;
     _mapper             = mapper;
     _planProgramAccount = planProgramAccount;
     _accountType        = accountType;
     _program            = program;
     _sharedJPOSService  = sharedJPOSService;
 }
 public DashboardController(ISettingsService settingsService, IReportsJobPostingService reportsJobPostingService, IReportsCompanyProfileService reportsCompanyProfileService, ICompanyProfileService companyProfileService, IReportsCandidateProfileService reportsCandidateProfileService, ICompanyInfoService companyInfoService, IJobPostingsService jobPostingsService, IUserInfoService userInfoService, ICandidatesService candidatesService, IAccountTypeService accountTypeService, ICandidateProfileService candidateProfileService, ICandidateFavoriteJobPostingsService favoriteJobPostingsService)
 {
     this.settingsService                = settingsService;
     this.reportsJobPostingService       = reportsJobPostingService;
     this.reportsCompanyProfileService   = reportsCompanyProfileService;
     this.companyProfileService          = companyProfileService;
     this.reportsCandidateProfileService = reportsCandidateProfileService;
     this.companyInfoService             = companyInfoService;
     this.jobPostingsService             = jobPostingsService;
     this.userInfoService                = userInfoService;
     this.candidatesService              = candidatesService;
     this.accountTypeService             = accountTypeService;
     this.candidateProfileService        = candidateProfileService;
     this.favoriteJobPostingsService     = favoriteJobPostingsService;
 }
Example #12
0
 public AccountService(
     IAccountRepository accountRepository,
     IUserAccountService userAccountService,
     IAccountTypeService accountTypeService,
     IBankFamilyService bankFamilyService,
     IBankSubFamilyService bankSubFamilyService,
     IBankAgencyService bankAgencyService,
     IMapper mapper)
 {
     _accountRepository    = accountRepository;
     _userAccountService   = userAccountService;
     _accountTypeService   = accountTypeService;
     _bankFamilyService    = bankFamilyService;
     _bankSubFamilyService = bankSubFamilyService;
     _bankAgencyService    = bankAgencyService;
     _mapper = mapper;
 }
Example #13
0
 public PosApiController(IUnityContainer unityContaine, IPosEndPointService posEndPointService, IPostTokenService postTokenService, IAccountTypeService accountTypeService,
                         ITicketsService ticketsService, ITicketOffService ticketOffService, IAccountService accountService, IMembershipService membershipService, IShopService shopService,
                         TransactionHelper transactionHelper, IAdmissionTicketService admissionTicketService, IHandRingPrintService handRingPrintService)
 {
     this._unityContainer        = unityContaine;
     this.posEndPointService     = posEndPointService;
     this.postTokenService       = postTokenService;
     this.ticketsService         = ticketsService;
     this.ticketOffService       = ticketOffService;
     this.accountService         = accountService;
     this.membershipService      = membershipService;
     this.accountTypeService     = accountTypeService;
     this.shopService            = shopService;
     this.transactionHelper      = transactionHelper;
     this.admissionTicketService = admissionTicketService;
     this.handRingPrintService   = handRingPrintService;
 }
 public ServiceManager(
     IBusinessService business,
     IRoleService role,
     IUserService user,
     IAccountTypeService accountType,
     IGroupService group,
     IAccountService account,
     IClientService client,
     IRelationshipService relationship)
 {
     this.Business     = business;
     this.Role         = role;
     this.User         = user;
     this.AccountType  = accountType;
     this.Group        = group;
     this.Account      = account;
     this.Client       = client;
     this.Relationship = relationship;
 }
Example #15
0
 public PersonalCentreController(IAccountService accountService, ITicketsService ticketsService
                                 , IAdmissionTicketService admissionTicketService, IUserCouponsService userCouponsService,
                                 ICouponsService couponsService, TransactionHelper transactionHelper, IOrdersService ordersService,
                                 IOrderDetialService orderDetialService, IUseCouponslogService useCouponslogService, IMembershipService membershipService
                                 , IAccountTypeService accountTypeService, ILog4netService log4NetService, DatabaseInstance _databaseInstance)
 {
     this.accountService         = accountService;
     this.ticketsService         = ticketsService;
     this.admissionTicketService = admissionTicketService;
     this.userCouponsService     = userCouponsService;
     this.couponsService         = couponsService;
     this.transactionHelper      = transactionHelper;
     this.ordersService          = ordersService;
     this.orderDetialService     = orderDetialService;
     this.useCouponslogService   = useCouponslogService;
     this.membershipService      = membershipService;
     this.accountTypeService     = accountTypeService;
     this.log4NetService         = log4NetService;
     this._databaseInstance      = _databaseInstance;
 }
Example #16
0
 public AccountTypeCollection(IAccountTypeService accountTypeService, ILogService logService) : base(logService)
 {
     AccountTypeService = accountTypeService;
 }
 public AccountController(IAccountService accountService, IAccountTypeService accountTypeService)
 {
     this.AccountService     = accountService;
     this.AccountTypeService = accountTypeService;
 }
 public ChartOfAccountsController(IChartOfAccountService chartOfAccountService, IAccountTypeService accountTypeService)
 {
     ChartOfAccountService = chartOfAccountService;
     AccountTypeService    = accountTypeService;
 }
        public CreateAccountViewModel(ILoggerFacade logger, IEventAggregator eventAggregator,
            ICurrencyService currencyService, IAccountTypeService accountTypeService, IEmailTypeService emailTypeService,
            IGenderService genderService, ICountryService countryService, ICityService cityService)
            : base(logger, eventAggregator)
        {
            Requires.NotNull(currencyService, "currencyService");
            Requires.NotNull(accountTypeService, "accountTypeService");
            Requires.NotNull(accountTypeService, "emailTypeService");
            Requires.NotNull(genderService, "genderService");
            Requires.NotNull(countryService, "countryService");
            Requires.NotNull(cityService, "cityService");

            _currencyService = currencyService;
            _accountTypeService = accountTypeService;
            _emailTypeService = emailTypeService;
            _genderService = genderService;
            _countryService = countryService;
            _cityService = cityService;

            _lazyLoadedCommand = new Lazy<ICommand>(() => new DelegateCommand(OnLoaded));
            _lazyApplyCommand = new Lazy<ICommand>(() => new DelegateCommand(OnApply, CanApply));
            _account = new CreateAccountModel();
        }
 public AccountTypesController(IAccountTypeService accountTypeService) => AccountTypeService = accountTypeService;
 public AccountTypesController(ILogger logger, IUnitOfWork unitOfWork, IAccountTypeService accountTypeService)
     : base(logger, unitOfWork)
 {
     Requires.NotNull(accountTypeService, "EmailTypeService");
     _accountTypeService = accountTypeService;
 }
 public AccountTypeController(IAccountTypeService service)
 {
     _service = service;
 }
Example #23
0
 public AssetTypeController(IUnitOfWork unitOfWork, IAccountTypeService assetTypeService)
     : base()
 {
     _unitOfWork       = unitOfWork;
     _assetTypeService = assetTypeService;
 }
Example #24
0
 /// <summary>
 /// Constructor for injecting services with APIs.
 /// </summary>
 /// <param name="accountType"></param>
 public AccountTypeController(IAccountTypeService accountType)
 {
     _accountType = accountType;
 }
 public AccountTypeController(IAccountTypeService accountTypeService)
 {
     //this is called contructor injection
     _accountTypeService = accountTypeService;
 }