예제 #1
0
 public AccountService(ILoggingService loggingService, IAccountRepository accountRepository,
                       ISharedHelper helper)
 {
     _loggingService    = loggingService;
     _accountRepository = accountRepository;
     _helper            = helper;
 }
예제 #2
0
 public AccountService(ILoggingService loggingService, IAccountRepository accountRepository,
     ISharedHelper helper)
 {
     _loggingService = loggingService;
     _accountRepository = accountRepository;
     _helper = helper;
 }
예제 #3
0
 public AdministratorService(ILoggingService loggingService, IAdministratorRepository administratorRepository,
                             ISharedHelper helper)
 {
     _loggingService          = loggingService;
     _administratorRepository = administratorRepository;
     _helper = helper;
 }
예제 #4
0
 public AdministratorRepository(IConfigurationService configurationService, ISharedHelper helper, IAccountRepository repository)
 {
     _configurationService = configurationService;
     _helper = helper;
     _repository = repository;
 }
예제 #5
0
 public AdministratorRepository(IConfigurationService configurationService, ISharedHelper helper, IAccountRepository repository)
 {
     _configurationService = configurationService;
     _helper     = helper;
     _repository = repository;
 }
예제 #6
0
 public HelpService(ISharedHelper helper)
 {
     _helper = helper;
     _connectionString = "Data Source=195.50.21.74;Initial Catalog=Coffee;Persist Security Info=True;"
                         + "User ID=database;Password=5E43zdwNKV";
 }
예제 #7
0
 public AccountRepository(IConfigurationService configurationService, ISharedHelper helper)
 {
     _configurationService = configurationService;
     _helper = helper;
 }
예제 #8
0
 public HelpService(ISharedHelper helper)
 {
     _helper           = helper;
     _connectionString = "Data Source=195.50.21.74;Initial Catalog=Coffee;Persist Security Info=True;"
                         + "User ID=database;Password=5E43zdwNKV";
 }