public async Task <ActionResult <List <Product> > > GetTypes()
 {
     return(Ok(await _productTypes.ListAllAsync()));
 }
 public async Task <ActionResult <List <ProductBrand> > > GetBrand()
 {
     return(Ok(await _productBrand.ListAllAsync()));
 }