Beispiel #1
0
 public byte[] GetAllBiochemistryData()
 {
     BLL_Biochemistry bll = new BLL_Biochemistry();
     ReturnValue resoult = bll.GetAll();
     if (resoult.ErrorFlag && resoult.Count > 0)
     {
         return DataSetZip.GetDataSetZipBytes(resoult.ResultDataSet);
     }
     else
     {
         return null;
     }
 }
Beispiel #2
0
 public ReturnValue AddUpdateBiochemistry(Biochemistry model)
 {
     BLL_Biochemistry bll = new BLL_Biochemistry();
     return bll.AddUpdate(model);
 }
Beispiel #3
0
 public ReturnValue GetStatisticsBio(string EmployeeID)
 {
     BLL_Biochemistry bll = new BLL_Biochemistry();
     return bll.GetStatisticsBio(EmployeeID);
 }