public async Task <ActionResult <IEnumerable <Product> > > GetAllAsync()
 {
     return(Ok(await _repository.GetAllAsync()));
 }