コード例 #1
0
ファイル: Oyster.cs プロジェクト: CarverLab/Oyster
 public bool CanMoveSession(string SessionId, int UserId)
 {
     Functions F = new Functions();
     bool response = F.CanMoveSession(SessionId,UserId);
     F.Dispose();
     return response;
 }