public AdminController(IMemberServices services, IDepartmentService departmentService, IWorkerServices worker, IMemberServices member, ISermonServices sermon, ApplicationDbContext applicationDb, IEventServices eventServices, ISermonCategoryServ sermonCategory)
 {
     _memberServices = services;
     _dtservice      = departmentService;
     _event          = eventServices;
     _sermonServices = sermon;
     _workServ       = worker;
     _context        = applicationDb;
     _sermonCategory = sermonCategory;
 }
 public NavigationController(ApplicationDbContext context, ISermonServices sermon, ISermonCategoryServ categoryServ)
 {
     _context        = context;
     _sermonServices = sermon;
     _categoryServ   = categoryServ;
 }