public EmployeesController(GL_SupportContext context)
 {
     _context = context;
 }
 public HomeController(ILogger <HomeController> logger)
 {
     _logger = logger;
     //Сделать контроллер где  будет бд
     _db = new GL_SupportContext(new Microsoft.EntityFrameworkCore.DbContextOptions <GL_SupportContext>());
 }
 public UsersController(GL_SupportContext context)
 {
     _context = context;
 }