Esempio n. 1
0
 public bool EditStationaryRoomPatientsState(StationaryRoomPatientsState stat)
 {
     return(StationaryRoomPatientsStateRepository.GetInstance().Update(stat) == null ? false : true);
 }
Esempio n. 2
0
 public List <StationaryRoomPatientsState> GetAllStationaryRoomPatientsState(StationaryRoom stationaryRoom)
 {
     return(StationaryRoomPatientsStateRepository.GetInstance().GetAllByRoom(stationaryRoom));
 }
Esempio n. 3
0
 public StationaryRoomPatientsState AddStationaryRoomPatientsState(StationaryRoomPatientsState stat)
 {
     return(StationaryRoomPatientsStateRepository.GetInstance().Create(stat));
 }