Пример #1
0
 public virtual void Update() {
     resourceSchema.Dal.Users dbo = null;
     try {
         dbo = new resourceSchema.Dal.Users();
         dbo.Users_Update(this.Sysid, this._userstatussysid, this._usertypesysid, this.Publicid, this.Path, this.Createdate, this.Lastmodifieddate, this.IsReadonly, this.Active);
     }
     catch (System.Exception ) {
         throw;
     }
     finally {
         if ((dbo != null)) {
             dbo.Dispose();
         }
     }
 }
Пример #2
0
 public virtual void Delete() {
     resourceSchema.Dal.Users dbo = null;
     try {
         dbo = new resourceSchema.Dal.Users();
         dbo.Users_Delete(this.Sysid);
     }
     catch (System.Exception ) {
         throw;
     }
     finally {
         if ((dbo != null)) {
             dbo.Dispose();
         }
     }
 }
Пример #3
0
 public static Users Load(System.Nullable<int> SysId) {
     resourceSchema.Dal.Users dbo = null;
     try {
         dbo = new resourceSchema.Dal.Users();
         System.Data.DataSet ds = dbo.Users_Select_One(SysId);
         Users obj = null;
         if (GlobalTools.IsSafeDataSet(ds)) {
             if ((ds.Tables[0].Rows.Count > 0)) {
                 obj = new Users();
                 obj.Fill(ds.Tables[0].Rows[0]);
             }
         }
         return obj;
     }
     catch (System.Exception ) {
         throw;
     }
     finally {
         if ((dbo != null)) {
             dbo.Dispose();
         }
     }
 }
Пример #4
0
 public virtual void Load() {
     resourceSchema.Dal.Users dbo = null;
     try {
         dbo = new resourceSchema.Dal.Users();
         System.Data.DataSet ds = dbo.Users_Select_One(this.Sysid);
         if (GlobalTools.IsSafeDataSet(ds)) {
             if ((ds.Tables[0].Rows.Count > 0)) {
                 this.Fill(ds.Tables[0].Rows[0]);
             }
         }
     }
     catch (System.Exception ) {
         throw;
     }
     finally {
         if ((dbo != null)) {
             dbo.Dispose();
         }
     }
 }
Пример #5
0
 public static UsersCollection GetAll() {
     resourceSchema.Dal.Users dbo = null;
     try {
         dbo = new resourceSchema.Dal.Users();
         System.Data.DataSet ds = dbo.Users_Select_All();
         UsersCollection collection = new UsersCollection();
         if (GlobalTools.IsSafeDataSet(ds)) {
             for (int i = 0; (i < ds.Tables[0].Rows.Count); i = (i + 1)) {
                 Users obj = new Users();
                 obj.Fill(ds.Tables[0].Rows[i]);
                 if ((obj != null)) {
                     collection.Add(obj);
                 }
             }
         }
         return collection;
     }
     catch (System.Exception ) {
         throw;
     }
     finally {
         if ((dbo != null)) {
             dbo.Dispose();
         }
     }
 }