Exemplo n.º 1
0
        /// <summary>
        /// Delete a pizza restaurant by ID.
        /// </summary>
        /// <param name="restaurantId">The ID of the restaurant</param>
        public void DeleteStore(PizzaStore rest)
        {
            Location store = Mapper.Map(rest);

            locationRepo.DeleteT(store);
        }