Line | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.Linq;
|
---|
4 | using System.Text;
|
---|
5 | using HeuristicLab.Hive.Contracts.BusinessObjects;
|
---|
6 | using HeuristicLab.Hive.Server.Interfaces;
|
---|
7 |
|
---|
8 | namespace HeuristicLab.Hive.Server.Core {
|
---|
9 | class ClientCommunicator: IClientCommunicator {
|
---|
10 | #region IClientCommunicator Members
|
---|
11 |
|
---|
12 | public Response Login(Client clientInfo) {
|
---|
13 | Response response = new Response();
|
---|
14 | response.Success = true;
|
---|
15 | response.StatusMessage = "Logged in...";
|
---|
16 |
|
---|
17 | return response;
|
---|
18 | }
|
---|
19 |
|
---|
20 | #endregion
|
---|
21 | }
|
---|
22 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.