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