Exemple #1
0
 public ApplicationRoleBDO(DataRow row)
 {
     this.ApplicationRoleId          = DBNullChecks.checkDBNullInt(row["ApplicationRoleId"]);
     this.ApplicationId              = DBNullChecks.checkDBNullInt(row["ApplicationId"]);
     this.ApplicationRoleName        = DBNullChecks.checkDBNullString(row["ApplicationRoleName"]);
     this.ApplicationRoleDescription = DBNullChecks.checkDBNullString(row["ApplicationRoleDescription"]);
 }
Exemple #2
0
 public UserBDO(DataRow row)
 {
     this.LoginId                   = DBNullChecks.checkDBNullString(row["LoginId"]);
     this.UserID                    = DBNullChecks.checkDBNullInt(row["UserID"]);
     this.UserFirstName             = DBNullChecks.checkDBNullString(row["UserFirstName"]);
     this.UserLastName              = DBNullChecks.checkDBNullString(row["UserLastName"]);
     this.UserMiddleName            = DBNullChecks.checkDBNullString(row["UserMiddleName"]);
     this.UserPhone                 = DBNullChecks.checkDBNullString(row["UserPhone"]);
     this.UserEmail                 = DBNullChecks.checkDBNullString(row["UserEmail"]);
     this.ApplicationServiceURLProd = DBNullChecks.checkDBNullString(row["ApplicationServiceURLProd"]);
     this.ReleaseVersion            = DBNullChecks.checkDBNullString(row["ReleaseVersion"]);
 }
Exemple #3
0
 public ApplicationRoleFeatureBDO(DataRow row)
 {
     this.ApplicationId          = DBNullChecks.checkDBNullInt(row["ApplicationId"]);
     this.FeatureName            = DBNullChecks.checkDBNullString(row["FeatureName"]);
     this.Active                 = DBNullChecks.checkDBNullBoolean(row["Active"]);
     this.FeatureCode            = DBNullChecks.checkDBNullString(row["FeatureCode"]);
     this.NavigationPath         = DBNullChecks.checkDBNullString(row["NavigationPath"]);
     this.GroupName              = DBNullChecks.checkDBNullString(row["GroupName"]);
     this.AppFeaturesId          = DBNullChecks.checkDBNullString(row["AppFeaturesId"]);
     this.DependentProjectId     = DBNullChecks.checkDBNullString(row["DependentProjectId"]);
     this.Description            = DBNullChecks.checkDBNullString(row["Description"]);
     this.FeatureDisplayPosition = DBNullChecks.checkDBNullInt(row["FeatureDisplayPosition"]);
 }