public async Task<ActionResult<IEnumerable<Product>>> GetProducts()
 {
     var products = await _repository.FindAll<Product>();
     return products;
 }