Example #1
0
 public DeleteModel(GrKouk.WebApi.Data.ApiDbContext context)
 {
     _context = context;
 }
 public EditModel(GrKouk.WebApi.Data.ApiDbContext context)
 {
     _context = context;
 }
Example #3
0
 public IndexModel(GrKouk.WebApi.Data.ApiDbContext context)
 {
     _context = context;
 }
 public EditModel(GrKouk.WebApi.Data.ApiDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
 public DeleteModel(GrKouk.WebApi.Data.ApiDbContext context, IToastNotification toastNotification)
 {
     _context           = context;
     _toastNotification = toastNotification;
 }
 public UpdateRatesModel(GrKouk.WebApi.Data.ApiDbContext context, IToastNotification toastNotification)
 {
     _context           = context;
     _toastNotification = toastNotification;
 }
Example #7
0
 public EditModel(GrKouk.WebApi.Data.ApiDbContext context, IMapper mapper, IToastNotification toastNotification)
 {
     _context           = context;
     _mapper            = mapper;
     _toastNotification = toastNotification;
 }
 public AppSettingsModel(ApiDbContext context, IToastNotification toastNotification)
 {
     _context           = context;
     _toastNotification = toastNotification;
 }
Example #9
0
 public IndexModel2(GrKouk.WebApi.Data.ApiDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }