Ejemplo n.º 1
0
Archivo: Test.cs Proyecto: jiqsaw/pikcv
 public static DataTable GetTestPerfectionResult(PIKCV.COM.EnumDB.EmployeeTypes EmployeeTypeCode, PIKCV.COM.EnumDB.LanguageID LanguageID, int PerfectionID, int TestLevelID)
 {
     try
     {
         PIKCV.DAL.TestPerfection obj = new PIKCV.DAL.TestPerfection();
         return(obj.GetTestPerfectionResult((int)EmployeeTypeCode, (int)LanguageID, PerfectionID, TestLevelID));
     }
     catch (Exception)
     {
         throw;
     }
     return(null);
 }
Ejemplo n.º 2
0
Archivo: Test.cs Proyecto: jiqsaw/pikcv
 //Yetkinlik Testini Getir
 public static DataTable GetPerfectionTest(PIKCV.COM.EnumDB.EmployeeTypes EmployeeType, PIKCV.COM.EnumDB.EmployeeTypes BothTestType, PIKCV.COM.EnumDB.LanguageID LanguageID)
 {
     try
     {
         PIKCV.DAL.TestPerfection obj = new PIKCV.DAL.TestPerfection();
         return(obj.GetPerfectionTest((int)EmployeeType, (int)BothTestType, (int)LanguageID));
     }
     catch (Exception)
     {
         throw;
     }
     return(null);
 }
Ejemplo n.º 3
0
Archivo: Test.cs Proyecto: jiqsaw/pikcv
 public static DataTable GetTestPerfectionScore(int UserID)
 {
     try
     {
         PIKCV.DAL.TestPerfection obj = new PIKCV.DAL.TestPerfection();
         return(obj.GetTestPerfectionScore(UserID));
     }
     catch (Exception)
     {
         throw;
     }
     return(null);
 }