Beispiel #1
0
        public string GetUserNameByTutorId(long id)
        {
            var    userId   = _tutorService.GetById(id).UserId;
            string Username = _userService.GetById(userId).UserName;

            return(Username);
        }