// Inject our datacontext
 public BaseController(EmployeeBenefitsContext context)
 {
     _context = context;
 }
 public DependentController(EmployeeBenefitsContext context) : base(context)
 {
     _context = context;
 }
 public HomeController(EmployeeBenefitsContext context) : base(context)
 {
     _context = context;
 }