public ProfileController(IUnitOfWork _uow,  ApplicationUserManager userManager, ApplicationSignInManager signInManager, IResumeService _resumeService, IUtilityService _utilityService)
 {
     _userManager = userManager;
     uow = _uow;
     resumeService = _resumeService;
     utilityService = _utilityService;
 }
Esempio n. 2
0
 public StorePOController()
 {
     inventorySvc     = new InventoryService();
     deptSvc          = new DepartmentService();
     supplierAndPOSvc = new SupplierAndPurchaseOrderService();
     utilSvc          = new UtilityService();
 }
Esempio n. 3
0
 public BrandController(IUtilityService UtilityService, IBrandMasterService BrandMasterService, IUserCredentialService UserCredentialService, IModuleService ModuleService)
 {
     this._UtilityService        = UtilityService;
     this._BrandMasterService    = BrandMasterService;
     this._UserCredentialService = UserCredentialService;
     this._ModuleService         = ModuleService;
 }
 public HomeController(
     IUtilityService utilityService,
     ISmsSender smsSender)
 {
     _utilityService = utilityService;
     _smsSender      = smsSender;
 }
Esempio n. 5
0
 public ShoppingCartController(
     IAccountService accountService,
     ICartService cartService,
     IProductService productService,
     IShippingService shippingService,
     IUtilityService utilityService,
     IOfferService offerService,
     IWorkContext workContext,
     IPriceFormatter priceFormatter,
     ICacheManager cacheManager,
     TaxSettings taxSettings,
     ApolloSessionState session)
 {
     _accountService  = accountService;
     _cartService     = cartService;
     _productService  = productService;
     _shippingService = shippingService;
     _utilityService  = utilityService;
     _offerService    = offerService;
     _workContext     = workContext;
     _priceFormatter  = priceFormatter;
     _cacheManager    = cacheManager;
     _taxSettings     = taxSettings;
     _session         = session;
 }
Esempio n. 6
0
 public CommonController(
     IUtilityService utilityService,
     ICampaignService campaignService,
     ICartService cartService,
     IOfferService offerService,
     IAccountService accountService,
     IShippingService shippingService,
     IProductService productService,
     IPriceFormatter priceFormatter,
     IWorkContext workContext,
     ICacheManager cacheManager,
     HttpContextBase httpContext,
     EmailSettings emailSettings,
     StoreInformationSettings storeInformationSettings)
 {
     _utilityService           = utilityService;
     _campaignService          = campaignService;
     _cartService              = cartService;
     _offerService             = offerService;
     _accountService           = accountService;
     _shippingService          = shippingService;
     _productService           = productService;
     _priceFormatter           = priceFormatter;
     _workContext              = workContext;
     _cacheManager             = cacheManager;
     _httpContext              = httpContext;
     _emailSettings            = emailSettings;
     _storeInformationSettings = storeInformationSettings;
 }
Esempio n. 7
0
 /// <summary>
 /// Ctor
 /// </summary>
 /// <param name="utilityService"></param>
 /// <param name="resourceManager"></param>
 /// <param name="tillService"></param>
 public MessageManager(IUtilityService utilityService, IApiResourceManager resourceManager,
                       ITillService tillService)
 {
     _utilityService  = utilityService;
     _resourceManager = resourceManager;
     _tillService     = tillService;
 }
 public JobWorkController(IJobWorkTypeService JobWorkTypeService, IUtilityService UtilityService, IModuleService ModuleService,
                          IUserCredentialService UserCredentialService, IJobWorkerService JobWorkerService, IStateService StateService, ICityService CityService,
                          IBankNameService BankNameService, IBloodGroupService BloodGroupService, IYearExperienceService YearExperienceService, IMonthExperienceService MonthExperienceService,
                          IDepartmentService DepartmentService, IDesignationMasterService DesignationMasterService, ITypeOfSupplierService TypeOfSupplierService,
                          IBankService BankService, IJobWorkPaymentService JobWorkPaymentService, IOutwardToTailorService OutwardToTailorService,
                          IOutwardToTailorItemService OutwardToTailorItemService, IJobWorkStockService JobWorkStockService, IJobWorkOutwardToClientService JobWorkOutwardToClientService)
 {
     this._JobWorkTypeService            = JobWorkTypeService;
     this._utilityService                = UtilityService;
     this._ModuleService                 = ModuleService;
     this._IUserCredentialService        = UserCredentialService;
     this._JobWorkerService              = JobWorkerService;
     this._StateService                  = StateService;
     this._CityService                   = CityService;
     this._BankNameService               = BankNameService;
     this._BloodGroupService             = BloodGroupService;
     this._YearExperienceService         = YearExperienceService;
     this._MonthExperienceService        = MonthExperienceService;
     this._DepartmentService             = DepartmentService;
     this._DesignationMasterService      = DesignationMasterService;
     this._TypeOfSupplierService         = TypeOfSupplierService;
     this._BankService                   = BankService;
     this._JobWorkPaymentService         = JobWorkPaymentService;
     this._OutwardToTailorService        = OutwardToTailorService;
     this._OutwardToTailorItemService    = OutwardToTailorItemService;
     this._JobWorkStockService           = JobWorkStockService;
     this._JobWorkOutwardToClientService = JobWorkOutwardToClientService;
 }
Esempio n. 9
0
 public ProductController(
     IBrandService brandService,
     IProductService productService,
     IOfferService offerService,
     ISearchService searchService,
     ICategoryService categoryService,
     IShippingService shippingService,
     ICartService cartService,
     IUtilityService utilityService,
     IPriceFormatter priceFormatter,
     IRecentlyViewedProductsService recentlyViewedProductsService,
     IWorkContext workContext,
     CatalogSettings catalogSettings)
 {
     _brandService    = brandService;
     _productService  = productService;
     _offerService    = offerService;
     _searchService   = searchService;
     _categoryService = categoryService;
     _shippingService = shippingService;
     _cartService     = cartService;
     _utilityService  = utilityService;
     _priceFormatter  = priceFormatter;
     _recentlyViewedProductsService = recentlyViewedProductsService;
     _catalogSettings = catalogSettings;
     _workContext     = workContext;
 }
 public DesignationController(IUtilityService UtilityService, IDesignationMasterService DesignationMasterService, IUserCredentialService UserCredentialService, IModuleService ModuleService)
 {
     this._UtilityService           = UtilityService;
     this._DesignationMasterService = DesignationMasterService;
     this._UserCredentialService    = UserCredentialService;
     this._ModuleService            = ModuleService;
 }
Esempio n. 11
0
 public AdminController(IQuestionCategoryService iQuestionCategoryService
                        , IQuestionService iQuestionService
                        , ITestCategoryService iTestCategoryService
                        , ITestService iTestService
                        , IDocumentInformationService iDocumentInformationService
                        , IRoleService iRoleService
                        , IUserService iUserService
                        , ICompanyService iCompanyService
                        , ICompanyBranchService iCompanyBranchService
                        , IUtilityService iUtilityService
                        , ITestTakenService iTestTakenService
                        )
 {
     _iQuestionCategoryService    = iQuestionCategoryService;
     _iQuestionService            = iQuestionService;
     _iTestCategoryService        = iTestCategoryService;
     _iTestService                = iTestService;
     _iDocumentInformationService = iDocumentInformationService;
     _iRoleService                = iRoleService;
     _iUserService                = iUserService;
     _iCompanyService             = iCompanyService;
     _iCompanyBranchService       = iCompanyBranchService;
     _iUtilityService             = iUtilityService;
     _iTestTakenService           = iTestTakenService;
 }
Esempio n. 12
0
 public UserUnitController(
     DataContext context,
     IUtilityService utilityService)
 {
     _context        = context;
     _utilityService = utilityService;
 }
Esempio n. 13
0
        // This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
        public void Configure(IApplicationBuilder app, IHostingEnvironment env, IUtilityService utilityService, ILoggerFactory loggerFactory)
        {
            if (env.IsDevelopment())
            {
                app.UseDeveloperExceptionPage();
                loggerFactory.AddFile("Logs/AuthorAdmin-{Date}.txt");
            }
            else
            {
                //     app.UseHsts();
            }

            //  app.UseHttpsRedirection();
            //app.UseSwagger();
            //app.UseSwaggerUi3();

            app.UseSwagger();
            app.UseSwaggerUI(c =>
            {
                c.SwaggerEndpoint("/swagger/v1/swagger.json", "Taxathand AuthorAdminAPI");
            });

            app.ConfigureExceptionHandler(utilityService);
            app.UseMvc();
            app.UseCors("FrontEnd");
            app.UseStaticFiles();
            app.UseCookiePolicy();
            app.UseAuthentication();
        }
Esempio n. 14
0
 public UserService(IUtilityService utilityService, IDataContextFactory dataContextFactory, IUtilityUserRoleService utilityUserRoleService, IRoleService roleService)
 {
     _commonDBContext        = dataContextFactory.CreateCommonDBContext();
     _utilityService         = utilityService;
     _utilityUserRoleService = utilityUserRoleService;
     _roleService            = roleService;
 }
Esempio n. 15
0
 public CatalogueController(IClientMasterService ClientMasterService, ICountryService CountryService, IStateService StateService,
                            IDistrictService DistrictService, IBankService BankService, IBankNameService BankNameService, IUtilityService UtilityService, IUserCredentialService usercredentialservice, IModuleService iIModuleService,
                            IClientBankDetailService ClientBankDetailService, ICatalogueService CatalogueService, IBarcodeNumberService BarcodeNumberService, IItemNameService ItemNameService,
                            IUniversalBarcodeNumberService UniversalBarocodeNumberService, IItemService ItemService, IColorCodeService ColorCodeService, IItemCategoryService CategoryService,
                            IEntryStockItemService EntryStockItemService, IOpeningStockService OpeningStockService, IInwardItemFromSupplierService InwardItemFromSupplierService, IUnitService UnitService)
 {
     this._ClientMasterService           = ClientMasterService;
     this._CountryService                = CountryService;
     this._StateService                  = StateService;
     this._DistrictService               = DistrictService;
     this._BankService                   = BankService;
     this._BankNameService               = BankNameService;
     this._UtilityService                = UtilityService;
     this._ClientBankDetailService       = ClientBankDetailService;
     this._IUserCredentialService        = usercredentialservice;
     this._iIModuleService               = iIModuleService;
     this._CatalogueService              = CatalogueService;
     this._BarcodeNumberService          = BarcodeNumberService;
     this._ItemNameService               = ItemNameService;
     this._UniversalBarcodeNumberService = UniversalBarocodeNumberService;
     this._ItemService                   = ItemService;
     this._ColorCodeService              = ColorCodeService;
     this._CategoryService               = CategoryService;
     this._EntryStockItemService         = EntryStockItemService;
     this._OpeningStockService           = OpeningStockService;
     this._InwardItemFromSupplierService = InwardItemFromSupplierService;
     this._UnitService                   = UnitService;
 }
Esempio n. 16
0
 public CacheHelper()
 {
     cache = CacheFactory.GetInstance();
     cacheInstanceTypeIsRedis = cache.GetType().FullName.ToLower().Contains("redis");
     utilityService           = ServiceLocator.Current.Get <IUtilityService>();
     logger = ServiceLocator.Current.Get <ILogger>();
 }
 public ImageAnalyzerService(inRiverContext context)
 {
     _utilityService = context.ExtensionManager.UtilityService;
     _dataService    = context.ExtensionManager.DataService;
     _cognitiveServicesTranslationService = new CognitiveServicesTranslationService(context);
     _ocrService = new CognitiveServicesImageOcrService(context);
 }
 public ColorCodeController(IUtilityService UtilityService, IColorCodeService ColorCodeService, IUserCredentialService UserCredentialService, IModuleService ModuleService)
 {
     this._UtilityService        = UtilityService;
     this._ColorCodeService      = ColorCodeService;
     this._UserCredentialService = UserCredentialService;
     this._ModuleService         = ModuleService;
 }
Esempio n. 19
0
 public CashierReceiptController(IUtilityService utilityservice, IUserCredentialService usercredentialservice, IModuleService iIModuleService, IRetailBillService RetailBillService,
                                 ISalesBillService SalesBillService, ICashierSalesOrderService CashierSalesOrderService, ICashierRetailBillService CashierRetailBillService, ICashierSalesBillService CashierSalesBillService,
                                 ICardChequeHandoverService CardChequeHandoverService, ICashHandoverService CashHandoverService, IRetailBillAdjAmtDetailService RetailBillAdjAmtDetailService,
                                 ISalesBillAdjAmtDetailService SalesBillAdjAmtDetailService, ICashierRefundOrderService CashierRefundOrderService, IBalanceCarryForwardService BalanceCarryForwardService,
                                 IIncomeExpenseVoucherService IncomeExchangeVoucherService, ITemporaryCashMemoService TemporaryCashMemoService, ITemporaryCashMemoAdjAmtDetailService TemporaryCashMemoAdjAmtDetailService,
                                 ICashierTemporaryCashMemoService CashierTemporaryCashMemoService, ISalesReturnService SalesReturnService)
 {
     this._utilityservice                       = utilityservice;
     this._IUserCredentialService               = usercredentialservice;
     this._iIModuleService                      = iIModuleService;
     this._RetailBillService                    = RetailBillService;
     this._SalesBillService                     = SalesBillService;
     this._CashierSalesOrderService             = CashierSalesOrderService;
     this._CashierRetailBillService             = CashierRetailBillService;
     this._CashierSalesBillService              = CashierSalesBillService;
     this._CardChequeHandoverService            = CardChequeHandoverService;
     this._CashHandoverService                  = CashHandoverService;
     this._RetailBillAdjAmtDetailService        = RetailBillAdjAmtDetailService;
     this._SalesBillAdjAmtDetailService         = SalesBillAdjAmtDetailService;
     this._CashierRefundOrderService            = CashierRefundOrderService;
     this._BalanceCarryForwardService           = BalanceCarryForwardService;
     this._IncomeExchangeVoucherService         = IncomeExchangeVoucherService;
     this._TemporaryCashMemoService             = TemporaryCashMemoService;
     this._TemporaryCashMemoAdjAmtDetailService = TemporaryCashMemoAdjAmtDetailService;
     this._CashierTemporaryCashMemoService      = CashierTemporaryCashMemoService;
     this._SalesReturnService                   = SalesReturnService;
 }
 public PurchaseReturnController(IPurchaseReturnService PurchaseReturnService, IPurchaseReturnItemService PurchaseReturnItemService, IInwardFromSupplierService InwardFromSupplierService, IInwardItemFromSupplierService InwardItemFromSupplierService, IInwardFromShopToGodownService InwardFromShopToGodownService, IInwardItemFromShopToGodownService InwardItemFromShopToGodownService, IUserCredentialService UserCredentialService, IModuleService ModuleService,
                                 IUtilityService UtilityService, IShopStockService ShopStockService, IGodownStockService GodownStockService, IOpeningStockService OpeningStockService, IEntryStockItemService EntryStockItemService, IGodownService GodownService, IStockItemDistributionService StockItemDistributionService, IOutwardShopToGodownService OutwardShopToGodownService, IOutwardItemShopToGodownService OutwardItemShopToGodownService, ISuppliersMasterService SuppliersMasterService,
                                 IEmployeeMasterService EmployeeMasterService, IPurchaseInventoryTaxService PurchaseInventoryTaxService, IDebitNoteService DebitNoteService, IDebitNoteItemService DebitNoteItemService, IShopService ShopService)
 {
     this._PurchaseReturnService             = PurchaseReturnService;
     this._PurchaseReturnItemService         = PurchaseReturnItemService;
     this._InwardFromSupplierService         = InwardFromSupplierService;
     this._InwardItemFromSupplierService     = InwardItemFromSupplierService;
     this._InwardFromShopToGodownService     = InwardFromShopToGodownService;
     this._InwardItemFromShopToGodownService = InwardItemFromShopToGodownService;
     this._ModuleService                  = ModuleService;
     this._UserCredentialService          = UserCredentialService;
     this._UtilityService                 = UtilityService;
     this._ShopStockService               = ShopStockService;
     this._GodownStockService             = GodownStockService;
     this._OpeningStockService            = OpeningStockService;
     this._EntryStockItemService          = EntryStockItemService;
     this._GodownService                  = GodownService;
     this._StockItemDistributionService   = StockItemDistributionService;
     this._OutwardShopToGodownService     = OutwardShopToGodownService;
     this._OutwardItemShopToGodownService = OutwardItemShopToGodownService;
     this._SuppliersMasterService         = SuppliersMasterService;
     this._EmployeeMasterService          = EmployeeMasterService;
     this._PurchaseInventoryTaxService    = PurchaseInventoryTaxService;
     this._DebitNoteService               = DebitNoteService;
     this._DebitNoteItemService           = DebitNoteItemService;
     this._ShopService = ShopService;
 }
Esempio n. 21
0
 public BattleController(
     DataContext context,
     IUtilityService utilityService)
 {
     _context        = context;
     _utilityService = utilityService;
 }
Esempio n. 22
0
 public UtilitiesController(
     IUtilityService utilityService,
     IMapperFactory mapperFactory
     )
 {
     _utilityService = utilityService;
     _mapper         = mapperFactory.GetMapper(typeof(WebServices).Name);
 }
Esempio n. 23
0
 public LeaveRequestService(IUtilityService utils,
                            IAmazonDynamoDB dynamoDb,
                            IConfiguration config)
 {
     _utils    = utils;
     _dynamoDb = dynamoDb;
     _config   = config;
 }
 public GameRenderService(SKCanvas canvas, IUtilityService utility, Position windowSize)
 {
     _canvas        = canvas;
     UtilityService = utility;
     _imageCache    = new Dictionary <string, SKBitmap>();
     _windowSize    = windowSize;
     _center        = _windowSize / 2;
 }
Esempio n. 25
0
        /// <summary>
        ///  英数字と記号をランダムに並べた文字列を生成します。
        ///  生成された文字列はファイル名に使用できます。
        /// </summary>
        /// <param name="len">生成される文字列の長さです。</param>
        /// <param name="service"><see cref="ExapisSOP.Utils"/>サービスオブジェクトです。</param>
        /// <returns>生成された結果の分からない文字列です。</returns>
        public static string GetRandomText(int len, IUtilityService service)
        {
#if NETCOREAPP3_1
            return(GetRandomText(len, service.CreateRandom(Environment.TickCount64)));
#elif NET48
            return(GetRandomText(len, service.CreateRandom(Environment.TickCount)));
#endif
        }
Esempio n. 26
0
 public MatrisModel(ILogger <MatrisModel> logger,
                    IUtilityService <dynamic> utilityService,
                    IFrontService frontService)
 {
     _logger       = logger;
     _utils        = utilityService;
     _frontService = frontService;
 }
Esempio n. 27
0
 public ApprovalsService(IUtilityService utils,
                         IAmazonDynamoDB dynamoDb,
                         IConfiguration config)
 {
     _utils    = utils;
     _dynamoDb = dynamoDb;
     _config   = config;
 }
Esempio n. 28
0
 public TypeOfMaterialController(ITypeOfMaterialService TypeOfMaterialService, IUtilityService utilityService, IUserCredentialService usercredentialservice, IModuleService iIModuleService, IColorCodeService ColorCodeService)
 {
     this._TypeOfMaterialService  = TypeOfMaterialService;
     this._utilityService         = utilityService;
     this._IUserCredentialService = usercredentialservice;
     this._iIModuleService        = iIModuleService;
     this._ColorCodeService       = ColorCodeService;
 }
Esempio n. 29
0
 public WorkFlowLevelController(IWorkFlowSetupService workFlowSetupService,
     IUserProfileService userProfileService, IUtilityService utilityService,
     IWorkflowService workFlowService) : base(userProfileService,utilityService)
 {
     _workFlowSetupService = workFlowSetupService;
     _workFlowService = workFlowService;
 
 }
Esempio n. 30
0
 public UserProfileService(IUnitOfWorkAsync unitOfWork, IUserProfileRepository repository,
     IUtilityService utilityService,IUserProfileRepository userProfileRepository)
 {
     _unitOfWork = unitOfWork;
     _repository = repository;
     _utilityService = utilityService;
     _userProfileRepository = userProfileRepository;
 }
Esempio n. 31
0
 public UnitController(IUnitService unitservice, IUtilityService utilityservice, IUserCredentialService usercredentialservice, IModuleService iIModuleService, IUnitConversionService UnitConversionService)
 {
     this._unitservice            = unitservice;
     this._utilityservice         = utilityservice;
     this._IUserCredentialService = usercredentialservice;
     this._iIModuleService        = iIModuleService;
     this._UnitConversionService  = UnitConversionService;
 }
 public StationeryController()
 {
     invService  = new InventoryService();
     deptService = new DepartmentService();
     reqService  = new RequisitionService();
     uSvc        = new UtilityService();
     pushSvc     = new PushNotification();
 }
Esempio n. 33
0
 public AuditService(IRepository<AuditAction, int> action, IRepository<AuditSection, int> section, IUtilityService utilityService, IRepository<AuditTrail, long> auditTrail, IWorkContext worker, IDateTimeHelper datetime)
 {
     this._AuditTrailRep = auditTrail;
     this._worker = worker;
     this._date = datetime;
     this._UtilityService = utilityService;
     this._AuditSectionRep = section;
     this._AuditActionRep = action;
 }
Esempio n. 34
0
 public SearchController(ISolutionService solutionService, IUtilityService utilityService,
     ISolutionTypeService solutionTypeService,
     ISearchKeyService searchKeyService)
 {
     _solutionService = solutionService;
     _solutionTypeService = solutionTypeService;
     _searchKeyService = searchKeyService;
     _utilityService = utilityService;
 }
Esempio n. 35
0
 public ApiController(IResourceService resourceService, IUserService userService, IProfileService profileService, 
     IConversationService conversationService, IStateService stateService, IUtilityService utilityService,
     ISearchService searchService, IPhotosService photoService
     )
     : base(resourceService, userService, profileService, stateService, conversationService)
 {
     _searchService = searchService;
     _photoService = photoService;
     _utilityService = utilityService;
 }
 public RegisterController(ISolutionService solutionService, ISolutionTypeService solutionTypeService,
     ISearchKeyService searchKeyService, ISnippetService snippetService,
     IProgrammingLanguageService languageService, IUtilityService utilityService)
 {
     _solutionService = solutionService;
     _snippetService = snippetService;
     _solutionTypeService = solutionTypeService;
     _searchKeyService = searchKeyService;
     _utilityService = utilityService;
     _languageService = languageService;
 }
Esempio n. 37
0
 public LgaService(IUnitOfWorkAsync unitOfWork, ILgaRepository repository, IUserProfileService userProfileService,
     IUserProfileRepository userProfileRepository, IUtilityService utilityService,
     IApprovalService approvalService, IWorkflowService workflowService, IWorkFlowSetupService workFlowSetupService)
 {
     _unitOfWork = unitOfWork;
     _repository = repository;
     _userProfileService = userProfileService;
     _userProfileRepository = userProfileRepository;
     _utilityService = utilityService;
     _approvalService = approvalService;
     _workflowService = workflowService;
     _workFlowSetupService = workFlowSetupService;
     Mapper.CreateMap<UserProfile, UserProfileItem>();
 }
 public UtilitiesController(INotificationService notificationService, IResourceService resourceService, IUserService userService, IProfileService profileService, 
     ISamplesService samplesService, IVisitService visitService, IConversationService conversationService, IStateService stateService,
     IPhotosService photosService, IUtilityService utilityService, IKatushaGlobalCacheContext globalCacheContext
     )
     : base(resourceService, userService, profileService, stateService, conversationService)
 {
     _notificationService = notificationService;
     _globalCacheContext = globalCacheContext;
     _samplesService = samplesService;
     _visitService = visitService;
     _conversationService = conversationService;
     _photosService = photosService;
     _utilityService = utilityService;
 }
Esempio n. 39
0
 public SessionController(IUserProfileService userProfileService, IUtilityService utilityService, ISessionService sessionService)
     : base(userProfileService, utilityService)
 {
     _sessionService = sessionService;
 }
Esempio n. 40
0
 public ServiceController(IUtilityService utilityService)
 {
     _utilityService = utilityService;
 }
 public ProfilesController(IResourceService resourceService, IUserService userService, IProfileService profileService, IStateService stateService, IConversationService conversationService, IUtilityService utilityService)
     : base(resourceService, userService, profileService, stateService, conversationService)
 {
     _profileService = profileService;
     _utilityService = utilityService;
 }
Esempio n. 42
0
 public DefaultController(IUtilityService utilityService)
 {
     _utilityService = utilityService;
 }
Esempio n. 43
0
 public UserProfileController(IUserProfileService userProfileService,IUtilityService utilityService)
     : base(userProfileService,utilityService)
 {
 }
Esempio n. 44
0
 public StateController(IUserProfileService userProfileService,IUtilityService utilityService,
     IStateService stateService) 
     : base(userProfileService,utilityService)
 {
     _stateService = stateService;
 }
Esempio n. 45
0
 public EmailSender(IEmailAccount emailAcct, HttpContextBase context, IDateTimeHelper dateTime, IUtilityService utilityService)
 {
     this._emailAccount = emailAcct;
     this._httpContext = context;
     this._iDateTimeHelper = dateTime;
 }
Esempio n. 46
0
 public BaseApiController(IUserProfileService userProfileService,IUtilityService utilityService)
 {
     _userProfileService = userProfileService;
     _utilityService = utilityService;
 }
Esempio n. 47
0
 public LgaController(IUserProfileService userProfileService, IUtilityService utilityService, ILgaService lgaService)
     : base(userProfileService, utilityService)
 {
     _lgaService = lgaService;
 }