コード例 #1
0
ファイル: ClientExcelHelper.cs プロジェクト: SKDon/Tracker
 public ClientExcelHelper(
     IClientRepository clients,
     IExcelClientCalculation excel)
 {
     _clients = clients;
     _excel   = excel;
 }
コード例 #2
0
ファイル: ClientExcelHelper.cs プロジェクト: UHgEHEP/test
		public ClientExcelHelper(
			IClientRepository clients,
			IExcelClientCalculation excel)
		{
			_clients = clients;
			_excel = excel;
		}
コード例 #3
0
		public ClientCalculationController(
			IClientCalculationPresenter presenter,
			IClientBalanceRepository balance,
			IExcelClientCalculation excel,
			IClientRepository clients,
			IIdentityService identity)
		{
			_presenter = presenter;
			_balance = balance;
			_excel = excel;
			_clients = clients;
			_identity = identity;
		}
コード例 #4
0
 public ClientCalculationController(
     IClientCalculationPresenter presenter,
     IClientBalanceRepository balance,
     IExcelClientCalculation excel,
     IClientRepository clients,
     IIdentityService identity)
 {
     _presenter = presenter;
     _balance   = balance;
     _excel     = excel;
     _clients   = clients;
     _identity  = identity;
 }