public async Task <IList <Product> > GetProductsAsync() { var products = await _iRepository.GetAllAsync <Product>(); return(products.ToList()); }