예제 #1
0
파일: ASRoute.cs 프로젝트: codeno47/efc
 /// <summary>
 /// Updates the beat plan.
 /// </summary>
 /// <param name="beatPlanToUpdate">The beat plan to update.</param>
 public void UpdateBeatPlan(BeatPlan beatPlanToUpdate)
 {
     BeatPlanRepository.Update(beatPlanToUpdate);
 }
예제 #2
0
파일: ASRoute.cs 프로젝트: codeno47/efc
 /// <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));
 }