Example #1
0
 public CreateModel(ApplicationDbContext context, StoriesRepository storiesRepo, ChaptersRepository chaptersRepo, NotificationsRepository notificationsRepo)
 {
     _context           = context;
     _storiesRepo       = storiesRepo;
     _chaptersRepo      = chaptersRepo;
     _notificationsRepo = notificationsRepo;
 }
Example #2
0
 public EditModel(ApplicationDbContext context, StoriesRepository storiesRepo, ChaptersRepository chaptersRepo)
 {
     _context      = context;
     _storiesRepo  = storiesRepo;
     _chaptersRepo = chaptersRepo;
 }
Example #3
0
 public ChapterModel(ChaptersRepository chaptersRepo)
 {
     _chaptersRepo = chaptersRepo;
 }