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