示例#1
0
 /// <summary>
 /// Method to Get List of  Active or Inactive StudentBank
 /// </summary>
 /// <param name="argEn">StudentBank Entity as an Input.StudentBankCode,Description and Status as Input Properties.</param>
 /// <returns>Returns List of StudentBank</returns>
 public List <StudentBankEn> GetStudentBankTypelist(StudentBankEn argEn)
 {
     try
     {
         StudentBankDAL loDs = new StudentBankDAL();
         return(loDs.GetStudentBankTypelist(argEn));
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }