public ActionResult <IEnumerable <Cake> > Get() { return(cakeRepository.All().ToArray()); }
public List <Cake> All() { return(_cakeRepository.All()); }