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

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