public class FakeDinnerRepository : IDinnerRepository { public IQueryable FindAllDinners() { throw new NotImplementedException(); } public IQueryable FindByLocation(float lat, float long){ throw new NotImplementedException(); } public IQueryable FindUpcomingDinners() { throw new NotImplementedException(); } public Dinner GetDinner(int id) { throw new NotImplementedException(); } public void Add(Dinner dinner) { throw new NotImplementedException(); } public void Delete(Dinner dinner) { throw new NotImplementedException(); } public void Save() { throw new NotImplementedException(); } }