Esempio n. 1
0
 /// <summary>
 /// Updates the beat plan.
 /// </summary>
 /// <param name="beatPlanToUpdate">The beat plan to update.</param>
 public void UpdateBeatPlan(BeatPlan beatPlanToUpdate)
 {
     BeatPlanRepository.Update(beatPlanToUpdate);
 }
Esempio n. 2
0
 /// <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));
 }