예제 #1
0
 public ApplicationServices(ByDesignHttpClient client, IHostingEnvironment env,
                            ITenantSettingService tenantSettingService)
 {
     _client = client;
     _tenantSettingService = tenantSettingService;
     HostingEnvironment    = env;
 }
예제 #2
0
 public StockTransferController(IApplicationServices applicationServices,
                                ITenantSettingService tenantSettingService,
                                IHostingEnvironment environment)
 {
     _applicationServices  = applicationServices;
     _tenantSettingService = tenantSettingService;
     Environment           = environment;
 }
예제 #3
0
 public SalesOrderUploadController(IApplicationServices applicationServices,
                                   ITenantSettingService tenantSettingService,
                                   IHostingEnvironment environment)
 {
     _applicationServices  = applicationServices;
     _tenantSettingService = tenantSettingService;
     Environment           = environment;
 }
예제 #4
0
 public DataServices(DataContext dbContext, ByDesignHttpClient client, IHostingEnvironment env,
                     ITenantSettingService tenantSettingService, ISqlConnectionFactory connectionFactory, ILogger <DataServices> logger)
 {
     _dbContext            = dbContext;
     _client               = client;
     _tenantSettingService = tenantSettingService;
     HostingEnvironment    = env;
     _logger               = logger;
     _connectionFactory    = connectionFactory;
 }
예제 #5
0
 public TenantSettingController(ITenantSettingService tenantSettingService)
 {
     _tenantSettingService = tenantSettingService;
 }