/// <summary> /// Get a restaurant by ID. /// </summary> /// <param name="id">The ID of the restaurant</param> /// <returns>The restaurant</returns> public PizzaStore GetStoreById(int id) { return(Mapper.Map(locationRepo.GetTById(id))); }