예제 #1
0
파일: Oyster.cs 프로젝트: CarverLab/Oyster
 public Room GetRoomById(int Id)
 {
     Functions F =  new Functions();
     Room X = F.GetRoom(Id);
     F.Dispose();
     return X;
 }