public void Init()
        {
            var liveChatFakeData = new LiveChatFakeData();

            this.messagesServices = new MessagesServices(liveChatFakeData);
            this.fiendshipsServices = new FriendshipsServices(liveChatFakeData);
        }
 public void Init()
 {
     this.friendshipService = new FriendshipsServices(new LiveChatFakeData());
 }
 public FriendshipsController(ILiveChatData data)
     : base(data)
 {
     this.friendshipsServices = new FriendshipsServices(this.Data);
 }