public Boolean Delete(SqlInt32 HospitalID) { MST_HospitalDAL dalMST_Hospital = new MST_HospitalDAL(); if (dalMST_Hospital.Delete(HospitalID)) { return(true); } else { this.Message = dalMST_Hospital.Message; return(false); } }
public Boolean Update(MST_HospitalENT entMST_Hospital) { MST_HospitalDAL dalMST_Hospital = new MST_HospitalDAL(); if (dalMST_Hospital.Update(entMST_Hospital)) { return(true); } else { this.Message = dalMST_Hospital.Message; return(false); } }
public DataTable SelectAll() { MST_HospitalDAL dalMST_Hospital = new MST_HospitalDAL(); return(dalMST_Hospital.SelectAll()); }
public MST_HospitalENT SelectPK(SqlInt32 HospitalID) { MST_HospitalDAL dalMST_Hospital = new MST_HospitalDAL(); return(dalMST_Hospital.SelectPK(HospitalID)); }