Exemplo n.º 1
0
        public void WriteFoodPlace(FoodPlace foodplace)
        {
            FoodPlaceDB dataaccess = new FoodPlaceDB();

            dataaccess.CreateFoodPlace(foodplace);
        }
Exemplo n.º 2
0
        public ICollection <FoodPlace> GetFoodPlaces()
        {
            FoodPlaceDB dataaccess = new FoodPlaceDB();

            return(dataaccess.GetAllFoodPlaces());
        }