Exemple #1
0
        public Jam Get(int id)
        {
            Jam jam = jamRepo.GetById(id);

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

            return(profile);
        }
        public ProfileJam Get(int id)
        {
            ProfileJam jamAttendees = profileJamRepo.GetById(id);

            return(jamAttendees);
        }