コード例 #1
0
ファイル: ApiParametersController.cs プロジェクト: Poepon/JK
 public ApiParametersController(ICompanyCache companyCache,
                                IChannelCache channelCache,
                                IApiParameterAppService parameterAppService)
 {
     _companyCache        = companyCache;
     _channelCache        = channelCache;
     _parameterAppService = parameterAppService;
 }
コード例 #2
0
 public CompaniesController(ICompanyAppService companyAppService, IChannelCache channelCache)
 {
     _companyAppService = companyAppService;
     _channelCache      = channelCache;
 }