Esempio n. 1
0
 public R_View GetSP(
     int dept_no,
     string dept_sec_name
     )
 {
     try
     {
         using (TestBLL tbl = new TestBLL())
         {
             return(tbl.GetSP(
                        dept_no,
                        dept_sec_name
                        ));
         }
     }
     catch (Exception ex)
     {
         throw new Exception("Errorn Ma : " + ex.Message);
     }
 }