コード例 #1
0
        public Jam Get(int id)
        {
            Jam jam = jamRepo.GetById(id);

            return(jam);
        }
コード例 #2
0
        public Profile Get(int id)
        {
            Profile profile = profileRepo.GetById(id);

            return(profile);
        }
コード例 #3
0
        public ProfileJam Get(int id)
        {
            ProfileJam jamAttendees = profileJamRepo.GetById(id);

            return(jamAttendees);
        }