Ejemplo n.º 1
0
        public async Task <UserGymProfileDataContext> ViewGymProfile(string userId)
        {
            GymContext gymContext = await GetById(userId);

            UserGymProfileDataContext gymProfileData = gymContext.ConvertToUserProfileContext();

            return(gymProfileData);
        }