public PhysiciansController(INetworkClient client, ICacheService cacheService, IStringLocalizer <PhysiciansController> localizer, IXlsService xlsService)
 {
     _client       = client;
     _localizer    = localizer;
     _cacheService = cacheService;
     _xlsService   = xlsService;
 }
Beispiel #2
0
 public XlsUploadController(IHostingEnvironment host, IXlsUploadRepository xlsUploadRepository, IMapper mapper, IOptionsSnapshot <XlsUploadSettings> options, IXlsService xlsService)
 {
     this.xlsUploadRepository = xlsUploadRepository;
     this.xlsService          = xlsService;
     this.xlsUploadSettings   = options.Value;
     this.mapper = mapper;
     this.host   = host;
 }
 public ExportService(IUserService userService,
                      IHtmlTableConverter htmlTableConverter,
                      IPdfService pdfService,
                      IXlsService xlsService)
 {
     _userService        = userService;
     _htmlTableConverter = htmlTableConverter;
     _pdfService         = pdfService;
     _xlsService         = xlsService;
 }
Beispiel #4
0
        public DodajCenyTransferoweViewModel(IViewModelService viewModelService,
                                             IXlsService xlsService)
            : base(viewModelService)
        {
            this.xlsService = xlsService;

            DodajCenyTransferoweZPlikuXls = new RelayCommand(DodajCenyTransferoweZPlikuXlsExecute);
            ZmienDateCommand = new RelayCommand(ZmienDateCommandExecute, ZmienDateCommandCanExecute);

            ListaZmienionychCenOrg = ListaZmienionychCen.DeepClone();
        }
Beispiel #5
0
 public ImportDataController(IHostingEnvironment hostingEnvironment,
                             NxsDbContext context,
                             IXlsService xlsService,
                             IXlsImportVariableDataService xlsImportVariableDataService,
                             IExcelImportDataService excelImportDataService)
 {
     _context    = context;
     _xlsService = xlsService;
     _xlsImportVariableDataService = xlsImportVariableDataService;
     _excelImportDataService       = excelImportDataService;
     _hostingEnvironment           = hostingEnvironment;
 }
Beispiel #6
0
        public RozliczenieMsAccesHelper(IUnitOfWork unitOfWork,
                                        IUnitOfWorkMsAccess unitOfWorkMsAccess,
                                        IXlsService excelReportGenerator,
                                        IEppFileGenerator eppFileGenerator,
                                        IRozliczenieSQL_RW_Helper rwHelper,
                                        IRozliczenieSQL_PW_Helper pwHelper,
                                        IDirectoryHelper directoryHelper
                                        )
        {
            this.unitOfWork         = unitOfWork;
            this.unitOfWorkMsAccess = unitOfWorkMsAccess;
            this.rwHelper           = rwHelper;
            this.pwHelper           = pwHelper;

            DirectoryHelper      = directoryHelper;
            ExcelReportGenerator = excelReportGenerator;
            EppFileGenerator     = eppFileGenerator;

            nazwaTowaruSubiekt = new NazwaTowaruSubiektHelper();
        }
 public XlsxController(IXlsService xlsService)
 {
     this.xlsService = xlsService;
 }