public HomeController(IEmployeesRepository employeesRepository
                       , IWebHostEnvironment webHostEnvironment,
                       ICarbrandRepository carbrandRepository,
                       IDescriptionRespository descriptionRespository,
                       IOrderRepository orderRepository,
                       IGallerysRepository gallerysRepository,
                       AppDbContext context)
 {
     this.employeesRepository    = employeesRepository;
     this.webHostEnvironment     = webHostEnvironment;
     this.carbrandRepository     = carbrandRepository;
     this.descriptionRespository = descriptionRespository;
     this.orderRepository        = orderRepository;
     this.gallerysRepository     = gallerysRepository;
     this.context = context;
 }
 public DescriptionController(IDescriptionRespository descriptionRespository)
 {
     this.descriptionRespository = descriptionRespository;
 }