public virtual void Insert() {
     resourceSchema.Dal.Projectstatus dbo = null;
     try {
         dbo = new resourceSchema.Dal.Projectstatus();
         dbo.ProjectStatus_Insert(this.Publicid, this.Path, this.Createdate, this.Lastmodifieddate, this.Active);
     }
     catch (System.Exception ) {
         throw;
     }
     finally {
         if ((dbo != null)) {
             dbo.Dispose();
         }
     }
 }