コード例 #1
0
ファイル: CoachesService.cs プロジェクト: afbanbury/gmSim-API
 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));
        }