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