public async Task <Mdls.Milestone> Get(string id)
        {
            Mdls.Milestone milestone = await milestoneRepository.Get(id);

            return(milestone);
        }
Example #2
0
 /// <summary>
 /// Returns the Milestone with the matching ID
 /// </summary>
 /// <param name="id">The ID of the Milestone</param>
 /// <returns>The milestone with the given ID</returns>
 public Milestone GetMilestone(int id)
 {
     return(milestoneRepository.Get(id));
 }