public static async Task <Product> AddNewProduct(int storeId, Product product)
 {
     return(await dataAccess.AddNewProduct(storeId, product));
 }