public ThumbnailModel(ApplicationDbContext context, IAppFileHandler appFileHandler)
 {
     _context        = context;
     _appFileHandler = appFileHandler;
 }
 public DetailsModel(ApplicationDbContext context, IAppFileHandler appFileHandler)
 {
     _context        = context;
     _appFileHandler = appFileHandler;
 }
Exemple #3
0
 public CreateModel(ApplicationDbContext context, ITenantProvider tenantProvider, IAppFileHandler appFileHandler)
 {
     _context        = context;
     _tenantProvider = tenantProvider;
     _appFileHandler = appFileHandler;
 }