Ejemplo n.º 1
0
 public FormsController(IRepository repo,
                        IHostingEnvironment hostingEnvironment,
                        IExcelExport excelExport)
 {
     _repo = repo;
     _hostingEnvironment = hostingEnvironment;
     _excelExport        = excelExport;
 }
Ejemplo n.º 2
0
 public MailingListService(IExcelExport excelExport)
 {
     this.excelExport = excelExport;
 }
Ejemplo n.º 3
0
 public ExcelExportViewModel(IExcelExport mainView)
 {
     this.mainView = mainView;
     Initialize();
 }
Ejemplo n.º 4
0
 public MailingListService(IExcelExport excelExport)
 {
     this.excelExport = excelExport;
 }
Ejemplo n.º 5
0
 public ReservationsController(IReservationService reservation, IMailService emailService, IExcelExport excelExport)
 {
     this.reservation  = reservation;
     this.emailService = emailService;
     this.excelExport  = excelExport;
 }
 public ValuesController()
 {
     _excelExport = new GenerateExcel();
 }