Exemple #1
0
 public void FindAll()
 {
     try
     {
         UserObjectCollection users = new UserObjectCollection();
         users = new TIS.BL.Internal.User().GetAll();
         gdcUsers.DataSource = users;
     }
     catch (System.Exception exception1)
     {
         throw new System.Exception(MethodBase.GetCurrentMethod().Name, exception1);
     }
 }
        public UserObjectCollection GetAll()
        {
            UserObjectCollection users = new UserObjectCollection();
            string str = "";

            try
            {
                str   = this.BaseQuery(false, 0) + " ORDER BY " + UserObject.SURNAME + " ";
                users = UserConvertor.DataTableToCollection(this.ExecuteDataSet(str, false).Tables[0]);
            }
            catch (System.Exception exception1)
            {
                throw new Exception(MethodBase.GetCurrentMethod().Name, exception1);
            }
            return(users);
        }