Exemplo n.º 1
0
 public TenantService(ITenantDataService dataService, IUserService userService, ITransactionService transactionService)
 {
     this._dataService        = dataService;
     this._userService        = userService;
     this._transactionService = transactionService;
 }
Exemplo n.º 2
0
 public TenantService(ITenantDataService tenantSQLService,
                      IEmailService emailService)
 {
     this.tenantSQLService = tenantSQLService;
     this.emailService     = emailService;
 }
Exemplo n.º 3
0
 public TenantDataServiceTests()
 {
     tenantDataService = CreateTenantDataService();
     tenant            = CreateTenant();
 }