コード例 #1
0
ファイル: Room.cs プロジェクト: GabrielRogala/STGweb
 public Room(int name, int amount, RoomType roomType) : this()
 {
     this.name     = name;
     this.amount   = amount;
     this.roomType = roomType;
 }
コード例 #2
0
ファイル: Lesson.cs プロジェクト: GabrielRogala/STGweb
 public Lesson(Teacher teacher, Group group, Subject subject, RoomType roomType, int amount) : this(teacher, group, subject, roomType, amount, 1)
 {
 }
コード例 #3
0
ファイル: Room.cs プロジェクト: GabrielRogala/STGweb
 public Room()
 {
     this.name     = 0;
     this.amount   = 0;
     this.roomType = null;
 }