示例#1
0
 public ApplicationListPresenter(
     IApplicationRepository applications,
     IApplicationListItemMapper mapper,
     IStateFilter stateFilter,
     IStateConfig stateConfig,
     IApplicationGrouper grouper)
 {
     _applications = applications;
     _mapper       = mapper;
     _stateFilter  = stateFilter;
     _stateConfig  = stateConfig;
     _grouper      = grouper;
 }
示例#2
0
		public ApplicationListPresenter(
			IApplicationRepository applications,
			IApplicationListItemMapper mapper,
			IStateFilter stateFilter,
			IStateConfig stateConfig,
			IApplicationGrouper grouper)
		{
			_applications = applications;
			_mapper = mapper;
			_stateFilter = stateFilter;
			_stateConfig = stateConfig;
			_grouper = grouper;
		}
示例#3
0
 public ApplicationExcelRowSource(
     IApplicationRepository applications,
     IForwarderApplication forwarderApplication,
     IAwbRepository awbs,
     IStateConfig stateConfig,
     IStateFilter stateFilter,
     IApplicationListItemMapper itemMapper)
 {
     _applications         = applications;
     _forwarderApplication = forwarderApplication;
     _awbs        = awbs;
     _stateConfig = stateConfig;
     _stateFilter = stateFilter;
     _itemMapper  = itemMapper;
 }