Ejemplo n.º 1
0
 public FundsController(
     IEntityService service,
     SharedLocalizationService sharedLocalizer)
 {
     this.service         = service;
     this.sharedLocalizer = sharedLocalizer;
 }
Ejemplo n.º 2
0
 public ConfirmEmailModel(
     UserManager <ApplicationUser> userManager,
     SharedLocalizationService sharedLocalizer)
 {
     this.userManager     = userManager;
     this.sharedLocalizer = sharedLocalizer;
 }
Ejemplo n.º 3
0
 public AgreementsController(
     IAgreementsService service,
     SharedLocalizationService sharedLocalizer)
 {
     this.service         = service;
     this.sharedLocalizer = sharedLocalizer;
 }
 public ShareClassDetailsController(
     IEntityDetailsService service,
     IShareClassService shareClassService,
     SharedLocalizationService sharedLocalizer)
 {
     this.service           = service;
     this.shareClassService = shareClassService;
     this.sharedLocalizer   = sharedLocalizer;
 }
 public SubFundShareClassesController(
     IEntityService service,
     ISubFundService subFundService,
     SharedLocalizationService sharedLocalizer)
 {
     this.service         = service;
     this.subFundService  = subFundService;
     this.sharedLocalizer = sharedLocalizer;
 }
Ejemplo n.º 6
0
 public FundDetailsController(
     IEntityDetailsService service,
     IFundService fundService,
     SharedLocalizationService sharedLocalizer)
 {
     this.service         = service;
     this.fundService     = fundService;
     this.sharedLocalizer = sharedLocalizer;
 }
Ejemplo n.º 7
0
 public FundStorageController(
     IFundStorageService fundService,
     IFundSelectListService fundServiceSelect,
     SharedLocalizationService sharedLocalizer)
 {
     this.service         = fundService;
     this.serviceSelect   = fundServiceSelect;
     this.sharedLocalizer = sharedLocalizer;
 }
Ejemplo n.º 8
0
 public SubFundStorageController(
     ISubFundStorageService service,
     ISubFundRepository repository,
     SharedLocalizationService sharedLocalizer)
 {
     this.service         = service;
     this.repository      = repository;
     this.sharedLocalizer = sharedLocalizer;
 }
Ejemplo n.º 9
0
 public FundsController(
     IEntityService service,
     SharedLocalizationService sharedLocalizer,
     IUserRepository <UserFundColumn> repository)
 {
     this.service         = service;
     this.sharedLocalizer = sharedLocalizer;
     this.repository      = repository;
 }
Ejemplo n.º 10
0
 public ShareClassesController(
     IEntityService service,
     ILayoutService layoutService,
     SharedLocalizationService sharedLocalizer,
     IUserRepository <UserShareClassColumn> repository)
 {
     this.service         = service;
     this.layoutService   = layoutService;
     this.sharedLocalizer = sharedLocalizer;
     this.repository      = repository;
 }
Ejemplo n.º 11
0
 public FundSubFundsController(
     IRecentService recentService,
     IEntityService service,
     IFundService fundService,
     SharedLocalizationService sharedLocalizer)
 {
     this.recentService   = recentService;
     this.service         = service;
     this.fundService     = fundService;
     this.sharedLocalizer = sharedLocalizer;
 }
Ejemplo n.º 12
0
 public ShareClassStorageController(
     IRecentService recentService,
     IShareClassStorageService service,
     IShareClassRepository repository,
     SharedLocalizationService sharedLocalizer)
 {
     this.recentService   = recentService;
     this.service         = service;
     this.repository      = repository;
     this.sharedLocalizer = sharedLocalizer;
 }
Ejemplo n.º 13
0
 public UploadController(
     IFileSystemService service,
     IWebHostEnvironment environment,
     IConfiguration config,
     SharedLocalizationService sharedLocalizer)
 {
     this.service         = service;
     this.fileSizeLimit   = config.GetValue <long>(GlobalConstants.FileSizeLimitConfiguration);
     this.environment     = environment;
     this.sharedLocalizer = sharedLocalizer;
 }
Ejemplo n.º 14
0
 public LoginModel(
     SignInManager <ApplicationUser> signInManager,
     ILogger <LoginModel> logger,
     UserManager <ApplicationUser> userManager,
     SharedLocalizationService sharedLocalizer)
 {
     this.userManager     = userManager;
     this.sharedLocalizer = sharedLocalizer;
     this.signInManager   = signInManager;
     this.logger          = logger;
 }
 public SubFundDetailsController(
     IRecentService recentService,
     IEntityDetailsService service,
     ISubFundService subFundService,
     SharedLocalizationService sharedLocalizer)
 {
     this.recentService   = recentService;
     this.service         = service;
     this.subFundService  = subFundService;
     this.sharedLocalizer = sharedLocalizer;
 }
Ejemplo n.º 16
0
 public FundStorageController(
     IHubNotificationHelper notificationHelper,
     IRecentService recentService,
     IFundStorageService fundService,
     IFundSelectListService fundServiceSelect,
     SharedLocalizationService sharedLocalizer)
 {
     this.notificationHelper = notificationHelper;
     this.recentService      = recentService;
     this.service            = fundService;
     this.serviceSelect      = fundServiceSelect;
     this.sharedLocalizer    = sharedLocalizer;
 }
Ejemplo n.º 17
0
 public AdminController(
     UserManager <ApplicationUser> userManager,
     RoleManager <ApplicationRole> roleManager,
     IEmailSender emailSender,
     SharedLocalizationService sharedLocalizer,
     ILogger <AdminController> logger)
 {
     this.userManager     = userManager;
     this.roleManager     = roleManager;
     this.emailSender     = emailSender;
     this.sharedLocalizer = sharedLocalizer;
     this.logger          = logger;
 }
Ejemplo n.º 18
0
 public LayoutController(
     ILayoutService layoutService,
     IUserRepository <UserFundColumn> userFRepository,
     IUserRepository <UserSubFundColumn> userSFRepository,
     IUserRepository <UserShareClassColumn> userSCRepository,
     SharedLocalizationService sharedLocalizer)
 {
     this.layoutService    = layoutService;
     this.userFRepository  = userFRepository;
     this.userSFRepository = userSFRepository;
     this.userSCRepository = userSCRepository;
     this.sharedLocalizer  = sharedLocalizer;
 }
Ejemplo n.º 19
0
 public AdminController(
     IUserService userService,
     IHubNotificationHelper notificationHelper,
     IEmailSender emailSender,
     SharedLocalizationService sharedLocalizer,
     IConfiguration configuration)
 {
     this.userService        = userService;
     this.notificationHelper = notificationHelper;
     this.emailSender        = emailSender;
     this.sharedLocalizer    = sharedLocalizer;
     this.configuration      = configuration;
 }
Ejemplo n.º 20
0
 public FundStorageController(
     IHubContext <NotificationHub> hubContext,
     INotificationService notificationService,
     IRecentService recentService,
     IFundStorageService fundService,
     IFundSelectListService fundServiceSelect,
     SharedLocalizationService sharedLocalizer)
 {
     this.hubContext          = hubContext;
     this.notificationService = notificationService;
     this.recentService       = recentService;
     this.service             = fundService;
     this.serviceSelect       = fundServiceSelect;
     this.sharedLocalizer     = sharedLocalizer;
 }