38 lines
803 B
C#
38 lines
803 B
C#
using Models;
|
|
using Services;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Controller
|
|
{
|
|
public class SessionController
|
|
{
|
|
private ISessionService sessionService;
|
|
private ICharacterService characterService;
|
|
|
|
public List<Session> GetAvailableSessions()
|
|
{
|
|
return null;
|
|
}
|
|
public bool JoinSession(string sessionID)
|
|
{
|
|
return false;
|
|
}
|
|
public Session CreateSession(object sessionData)
|
|
{
|
|
return null;
|
|
}
|
|
public Session GetCurrentSession()
|
|
{
|
|
return null;
|
|
}
|
|
public bool LeaveSession(string sessionID)
|
|
{
|
|
return false;
|
|
}
|
|
}
|
|
}
|