public async Task <ActionResult> GetCakes() { var cakes = await _cakeRepo.GetAll(); return(Ok(cakes)); }