/// <summary> /// Update a pizza store restaurant. /// </summary> /// <param name="restaurant">The restaurant with changed values</param> /// <remarks>Have to make sure pizza store obj arg has all the same fields as original (except ones changing)</remarks> public void UpdateStore(PizzaStore restaurant) { locationRepo.UpdateT(Mapper.Map(restaurant)); }