예제 #1
0
 /// <summary>
 /// Minimal constructor for class SuProgramLang
 /// </summary>
 /// <param name="programid">Initial <see cref="SuProgramLang.Programid" /> value</param>
 /// <param name="programsName">Initial <see cref="SuProgramLang.ProgramsName" /> value</param>
 /// <param name="updBy">Initial <see cref="SuProgramLang.UpdBy" /> value</param>
 /// <param name="updDate">Initial <see cref="SuProgramLang.UpdDate" /> value</param>
 /// <param name="creBy">Initial <see cref="SuProgramLang.CreBy" /> value</param>
 /// <param name="creDate">Initial <see cref="SuProgramLang.CreDate" /> value</param>
 /// <param name="updPgm">Initial <see cref="SuProgramLang.UpdPgm" /> value</param>
 /// <param name="active">Initial <see cref="SuProgramLang.Active" /> value</param>
 public SuProgramLang(SS.SU.DTO.SuProgram program, string programsName, long updBy, DateTime updDate, long creBy, DateTime creDate, string updPgm, bool active)
 {
     this.program      = program;
     this.programsName = programsName;
     this.updBy        = updBy;
     this.updDate      = updDate;
     this.creBy        = creBy;
     this.creDate      = creDate;
     this.updPgm       = updPgm;
     this.active       = active;
 }
예제 #2
0
 /// <summary>
 /// Initializes a new instance of the SuProgramLang class
 /// </summary>
 /// <param name="programid">Initial <see cref="SuProgramLang.Programid" /> value</param>
 /// <param name="programsName">Initial <see cref="SuProgramLang.ProgramsName" /> value</param>
 /// <param name="comment">Initial <see cref="SuProgramLang.Comment" /> value</param>
 /// <param name="updBy">Initial <see cref="SuProgramLang.UpdBy" /> value</param>
 /// <param name="updDate">Initial <see cref="SuProgramLang.UpdDate" /> value</param>
 /// <param name="creBy">Initial <see cref="SuProgramLang.CreBy" /> value</param>
 /// <param name="creDate">Initial <see cref="SuProgramLang.CreDate" /> value</param>
 /// <param name="updPgm">Initial <see cref="SuProgramLang.UpdPgm" /> value</param>
 /// <param name="rowVersion">Initial <see cref="SuProgramLang.RowVersion" /> value</param>
 /// <param name="active">Initial <see cref="SuProgramLang.Active" /> value</param>
 /// <param name="language">Initial <see cref="SuProgramLang.Language" /> value</param>
 public SuProgramLang(SS.SU.DTO.SuProgram program, string programsName, string comment, long updBy, DateTime updDate, long creBy, DateTime creDate, string updPgm, Byte[] rowVersion, bool active, SS.DB.DTO.DbLanguage language)
 {
     this.program      = program;
     this.programsName = programsName;
     this.comment      = comment;
     this.updBy        = updBy;
     this.updDate      = updDate;
     this.creBy        = creBy;
     this.creDate      = creDate;
     this.updPgm       = updPgm;
     this.rowVersion   = rowVersion;
     this.active       = active;
     this.language     = language;
 }
예제 #3
0
 /// <summary>
 /// Initializes a new instance of the SuProgramRole class
 /// </summary>
 /// /// <param name="programroleSymbol">Initial <see cref="SuProgramRole.programroleSymbol" /> value</param>
 /// <param name="addState">Initial <see cref="SuProgramRole.AddState" /> value</param>
 /// <param name="editState">Initial <see cref="SuProgramRole.EditState" /> value</param>
 /// <param name="deleteState">Initial <see cref="SuProgramRole.DeleteState" /> value</param>
 /// <param name="displayState">Initial <see cref="SuProgramRole.DisplayState" /> value</param>
 /// <param name="comment">Initial <see cref="SuProgramRole.Comment" /> value</param>
 /// <param name="updBy">Initial <see cref="SuProgramRole.UpdBy" /> value</param>
 /// <param name="updDate">Initial <see cref="SuProgramRole.UpdDate" /> value</param>
 /// <param name="creBy">Initial <see cref="SuProgramRole.CreBy" /> value</param>
 /// <param name="creDate">Initial <see cref="SuProgramRole.CreDate" /> value</param>
 /// <param name="updPgm">Initial <see cref="SuProgramRole.UpdPgm" /> value</param>
 /// <param name="rowVersion">Initial <see cref="SuProgramRole.RowVersion" /> value</param>
 /// <param name="active">Initial <see cref="SuProgramRole.Active" /> value</param>
 /// <param name="role">Initial <see cref="SuProgramRole.Role" /> value</param>
 /// <param name="program">Initial <see cref="SuProgramRole.Program" /> value</param>
 public SuProgramRole(string programroleSymbol, bool addState, bool editState, bool deleteState, bool displayState, string comment, long updBy, DateTime updDate, long creBy, DateTime creDate, string updPgm, Byte[] rowVersion, bool active, SS.SU.DTO.SuRole role, SS.SU.DTO.SuProgram program)
 {
     this.programroleSymbol = programroleSymbol;
     this.addState          = addState;
     this.editState         = editState;
     this.deleteState       = deleteState;
     this.displayState      = displayState;
     this.comment           = comment;
     this.updBy             = updBy;
     this.updDate           = updDate;
     this.creBy             = creBy;
     this.creDate           = creDate;
     this.updPgm            = updPgm;
     this.rowVersion        = rowVersion;
     this.active            = active;
     this.role    = role;
     this.program = program;
 }