예제 #1
0
 public CoachesDocument Create(CoachesDocument coach)
 {
     _coaches.InsertOne(coach);
     return(coach);
 }
예제 #2
0
        public ActionResult <CoachesDocument> CreateCoach(CoachesDocument coach)
        {
            _coachesService.Create(coach);

            return(CreatedAtRoute("GetCoach", new { id = coach.Id.ToString() }, coach));
        }