Exemple #1
0
 public static Friend New(int userId, int friendUserId)
 {
     Friend friend = new Friend();
     friend.UserId = userId;
     friend.FriendUserId = friendUserId;
     return friend;
 }