Exemplo n.º 1
0
 public AccountController(IErechtheionConfiguration erechtheionConfiguration,
                          UserManager <ErechtheionUser> userManager,
                          SignInManager <ErechtheionUser> signInManager,
                          IEmailSender emailSender) : base(erechtheionConfiguration)
 {
     _userManager   = userManager;
     _signInManager = signInManager;
     _emailSender   = emailSender;
 }
Exemplo n.º 2
0
 public ManageController(IErechtheionConfiguration erechtheionConfiguration,
                         UserManager <ErechtheionUser> userManager,
                         SignInManager <ErechtheionUser> signInManager,
                         IEmailSender emailSender,
                         ILogger <ManageController> logger,
                         UrlEncoder urlEncoder) : base(erechtheionConfiguration)
 {
     _userManager   = userManager;
     _signInManager = signInManager;
     _emailSender   = emailSender;
     _logger        = logger;
     _urlEncoder    = urlEncoder;
 }
Exemplo n.º 3
0
 public HomeController(IErechtheionConfiguration erechtheionConfiguration) : base(erechtheionConfiguration)
 {
 }
Exemplo n.º 4
0
        protected AppServiceBase(IErechtheionConfiguration configuration)
        {
            Configuration = configuration;

            Logger = Log.ForContext(GetType());
        }
Exemplo n.º 5
0
 public BaseController(IErechtheionConfiguration erechtheionConfiguration)
 {
     _erechtheionConfiguration = erechtheionConfiguration;
 }
Exemplo n.º 6
0
 public TopicApplicationService(IErechtheionConfiguration configuration, ITopicRepository topicRepository) : base(configuration)
 {
     _topicRepository = topicRepository;
 }
Exemplo n.º 7
0
 public TopicController(IErechtheionConfiguration erechtheionConfiguration, ITopicApplicationService topicApplicationService) : base(erechtheionConfiguration)
 {
     _topicApplicationService = topicApplicationService;
 }
Exemplo n.º 8
0
 public void UseConfiguration(IConfigurationRoot configuration)
 {
     _configuration = new ErechtheionConfiguration(configuration);
     Services.AddSingleton <IErechtheionConfiguration>(_configuration);
 }
Exemplo n.º 9
0
 public TopicQueryService(DbProviderFactory dbProviderFactory, IErechtheionConfiguration configuration) : base(dbProviderFactory, configuration)
 {
 }
Exemplo n.º 10
0
 public void UseConfiguration(IConfiguration configuration)
 {
     Configuration = new ErechtheionConfiguration(configuration);
     Services.AddSingleton(Configuration);
 }
Exemplo n.º 11
0
 public BaseController(IErechtheionConfiguration erechtheionConfiguration)
 {
     _erechtheionConfiguration = erechtheionConfiguration;
     Logger = Log.ForContext(GetType());
 }
Exemplo n.º 12
0
 public TopicAppService(IErechtheionConfiguration configuration, ITopicRepository topicRepository, ITopicQuerySerivce topicQuerySerivce) : base(configuration)
 {
     _topicRepository   = topicRepository;
     _topicQuerySerivce = topicQuerySerivce;
 }
Exemplo n.º 13
0
 protected BaseQueryService(DbProviderFactory dbProviderFactory,
                            IErechtheionConfiguration configuration)
 {
     _dbProviderFactory = dbProviderFactory;
     _configuration     = configuration;
 }
Exemplo n.º 14
0
 public TopicApplicationService(IErechtheionConfiguration configuration, ITopicRepository topicRepository, TopicDomainService topicDomainService) : base(configuration)
 {
     _topicRepository    = topicRepository;
     _topicDomainService = topicDomainService;
 }