예제 #1
0
 public static DataSet BindDropDown(UserBO objUserBO,string Type,string ProcedureName)
 {
     DataSet ds = new DataSet();
     try
     {
         ds = CommonDAL.BindDropDown(objUserBO,Type, ProcedureName);
     }
     catch (Exception ex)
     {
         Log(ex, System.Reflection.MethodBase.GetCurrentMethod().Name);
     }
     return ds;
 }