public ProductsController(IServicesProducts<Products> serviceProducts, IServicesVendors<Vendors> serviceVendors)
 {
     this.serviceProducts = serviceProducts;
     this.serviceVendors = serviceVendors;
 }
 public VendorsController(IServicesVendors<Vendors> service)
 {
     this.service = service;
 }