Exemple #1
0
 public DataManageController(
     IUserInfoService userInfoService,
     IUnitOfWork unitOfWork,
     ILogService <UserInfoController> logger,
     IExportImportService exportImportService,
     IMapper mapper,
     IImportManagerService importManager)
 {
     _unitOfWork          = unitOfWork;
     _logger              = logger;
     _mapper              = mapper;
     _exportImportService = exportImportService;
     _importManager       = importManager;
 }
Exemple #2
0
        public GeneralForm(
            ICityProbabilityChanger cityProbabilityChanger,
            IDateChanger dateChanger,
            City city,
            IExportImportService exportImportService)
        {
            InitializeComponent();

            this.cityProbabilityChanger = cityProbabilityChanger;
            this.dateChanger            = dateChanger;
            this.city = city;
            this.exportImportService = exportImportService;

            InitTextBoxesInfo();
        }
Exemple #3
0
 public CommonController(IHostingEnvironment hostingEnvironment
                         , IExportImportService exportImportService)
 {
     _hostingEnvironment  = hostingEnvironment;
     _exportImportService = exportImportService;
 }
 public ExportImportController(IExportImportService exportImportService)
 {
     this.exportImportService = exportImportService;
 }