Пример #1
0
        public ProfileDto GetProfileInfo(string name)
        {
            ProfileDto res = new ProfileDto();

            foreach (var i in activeUsers)
            {
                if (i.Name == name)
                {
                    //return new ProfileDto() { BadWords= }
                }
            }
            return(res);
        }
Пример #2
0
 public void SetProfileInfo(ProfileDto newProfileInfo)
 {
     throw new NotImplementedException();
 }