/// <summary> /// Updates the beat plan. /// </summary> /// <param name="beatPlanToUpdate">The beat plan to update.</param> public void UpdateBeatPlan(BeatPlan beatPlanToUpdate) { BeatPlanRepository.Update(beatPlanToUpdate); }
/// <summary> /// Adds the beat plan. /// </summary> /// <param name="beatPlanToAdd">The beat plan to add.</param> /// <returns>BeatPlan.</returns> public BeatPlan AddBeatPlan(BeatPlan beatPlanToAdd) { return(BeatPlanRepository.Add(beatPlanToAdd)); }