예제 #1
0
 public AppointmentDTO(long id, DateTime beginning, DateTime end, RoomDTO room)
 {
     Id        = id;
     Beginning = beginning;
     End       = end;
     Room      = room;
 }
예제 #2
0
 public EquipmentDTO(string name, string type, string description, RoomDTO room)
 {
     Type        = type;
     Description = description;
     Name        = name;
     Room        = room;
 }
예제 #3
0
 public MedicalAppointmentDTO(long id, DateTime beginning, DateTime end, RoomDTO room, MedicalAppointmentType type, GuestDTO patient, IEnumerable <DoctorDTO> doctors)
     : base(id, beginning, end, room)
 {
     Type    = type;
     Patient = patient;
     Doctors = doctors;
 }
예제 #4
0
 public InventoryManagementDTO(DateTime beginning, DateTime end, RoomDTO room)
 {
     Beginning = beginning;
     End       = end;
     Room      = room;
     Equipment = new List <EquipmentDTO>();
 }
예제 #5
0
 public InventoryManagementDTO(long id, DateTime beginning, DateTime end, RoomDTO room, List <EquipmentDTO> equipment, RoomDTO roomTo)
 {
     Id        = id;
     Beginning = beginning;
     End       = end;
     Room      = room;
     Equipment = equipment;
     RoomTo    = roomTo;
 }
예제 #6
0
 public RenovationDTO(DateTime beginning, DateTime end, RoomDTO room, string type, RoomType newType) :
     base(beginning, end, room)
 {
     Type    = type;
     NewType = newType;
 }
예제 #7
0
 public AppointmentDTO(DateTime beginning, DateTime end, RoomDTO room)
 {
     Beginning = beginning;
     End       = end;
     Room      = room;
 }