Пример #1
0
 public void DeleteUser(string userId)
 {
     likeService.DeleteLikes(userId);
     commentService.DeleteComments(userId);
     postService.DeletePosts(userId);
     profileService.DeleteProfile(userId);
     userRepository.DeleteUser(userId);
     userRepository.Save();
 }