Esempio n. 1
0
 public TenantsController(ITenantsService tenantsService, IPropertiesService propertiesService)
 {
     this.tenantsService    = tenantsService;
     this.propertiesService = propertiesService;
 }
 public TenantRouteConstraint(ITenantsService tenantsService)
 {
     _tenantsService = tenantsService;
 }
Esempio n. 3
0
 public HomeController(ITenantsService tenantsService)
 {
     _tenantsService = tenantsService;
 }
Esempio n. 4
0
 public TenantsController(ITenantsService tenantService)
 {
     _tenantService = tenantService;
 }
Esempio n. 5
0
 public HomeController(ITenantsService tenantsService)
 {
     _tenantsService = tenantsService;
 }
Esempio n. 6
0
 public ProductsController(IUnitOfWork unitOfWork, IProductService productService, ITenantsService tenantsService)
 {
     _unitOfWork     = unitOfWork;
     _productService = productService;
     _tenantService  = tenantsService;
 }