示例#1
0
 public PrintsController(IJsReportMVCService jsreport, IHostingEnvironment env, PrintContext context, BookingFormContext booking, UserManager <Sale> userManager)
 {
     _jsReportMVCService = jsreport;
     _env         = env;
     _booking     = booking;
     _userManager = userManager;
     _context     = context;
 }
示例#2
0
 public PdfController(ApplicationDbContext dbContext, IStorageService storageService, IJsReportMVCService jsReportMvcService)
 {
     _dbContext          = dbContext;
     _storageService     = storageService;
     _jsReportMvcService = jsReportMvcService;
 }
 public ReportController(IVehicleService vehicleService, ICarRentInformationService carRentInformationService, IJsReportMVCService jsReportMvcService)
 {
     _vehicleService            = vehicleService;
     _carRentInformationService = carRentInformationService;
     _jsReportMvcService        = jsReportMvcService;
 }
 public CustomersController(CertitrackContext context, IJsReportMVCService jsReportMVCService)
 {
     _context           = context;
     JsReportMVCService = jsReportMVCService;
 }
示例#5
0
 public RacunController(MojContext context, IViewRenderService viewRenderService, IJsReportMVCService jsReportMVCService)
 {
     db = context;
     _viewRenderService = viewRenderService;
     JsReportMVCService = jsReportMVCService;
 }
示例#6
0
 public HomeController(IJsReportMVCService jsReportMVCService, IViewRenderService viewRenderService)
 {
     JsReportMVCService = jsReportMVCService;
     _viewRenderService = viewRenderService;
 }
 public EmployeeController(QLNSContext dbContext, IJsReportMVCService jsReportMVCService)
 {
     _dbContext         = dbContext;
     _empRepo           = new EmpRepository();
     JsReportMVCService = jsReportMVCService;
 }