示例#1
0
 /// <summary>
 /// Initializes a new instance of the Document class
 /// </summary>
 /// <param name="documentNo">Initial <see cref="Document.DocumentNo" /> value</param>
 /// <param name="active">Initial <see cref="Document.Active" /> value</param>
 /// <param name="creBy">Initial <see cref="Document.CreBy" /> value</param>
 /// <param name="creDate">Initial <see cref="Document.CreDate" /> value</param>
 /// <param name="updBy">Initial <see cref="Document.UpdBy" /> value</param>
 /// <param name="updDate">Initial <see cref="Document.UpdDate" /> value</param>
 /// <param name="updPgm">Initial <see cref="Document.UpdPgm" /> value</param>
 /// <param name="rowVersion">Initial <see cref="Document.RowVersion" /> value</param>
 /// <param name="documentTypeID">Initial <see cref="Document.DocumentTypeID" /> value</param>
 public Document(string documentNo, bool active, long creBy, DateTime creDate, long updBy, DateTime updDate, string updPgm, Byte[] rowVersion, SS.Standard.WorkFlow.DTO.DocumentType documentType)
 {
     this.documentNo   = documentNo;
     this.active       = active;
     this.creBy        = creBy;
     this.creDate      = creDate;
     this.updBy        = updBy;
     this.updDate      = updDate;
     this.updPgm       = updPgm;
     this.rowVersion   = rowVersion;
     this.documentType = documentType;
 }
示例#2
0
 /// <summary>
 /// Initializes a new instance of the WorkFlowDocumentType class
 /// </summary>
 /// <param name="serviceName">Initial <see cref="WorkFlowDocumentType.ServiceName" /> value</param>
 /// <param name="active">Initial <see cref="WorkFlowDocumentType.Active" /> value</param>
 /// <param name="creBy">Initial <see cref="WorkFlowDocumentType.CreBy" /> value</param>
 /// <param name="creDate">Initial <see cref="WorkFlowDocumentType.CreDate" /> value</param>
 /// <param name="updBy">Initial <see cref="WorkFlowDocumentType.UpdBy" /> value</param>
 /// <param name="updDate">Initial <see cref="WorkFlowDocumentType.UpdDate" /> value</param>
 /// <param name="updPgm">Initial <see cref="WorkFlowDocumentType.UpdPgm" /> value</param>
 /// <param name="rowVersion">Initial <see cref="WorkFlowDocumentType.RowVersion" /> value</param>
 /// <param name="workFlowType">Initial <see cref="WorkFlowDocumentType.WorkFlowType" /> value</param>
 /// <param name="documentType">Initial <see cref="WorkFlowDocumentType.DocumentType" /> value</param>
 public WorkFlowTypeDocumentType(string serviceName, bool active, long creBy, DateTime creDate, long updBy, DateTime updDate, string updPgm, byte[] rowVersion, SS.Standard.WorkFlow.DTO.WorkFlowType workFlowType, SS.Standard.WorkFlow.DTO.DocumentType documentType)
 {
     this.serviceName  = serviceName;
     this.active       = active;
     this.creBy        = creBy;
     this.creDate      = creDate;
     this.updBy        = updBy;
     this.updDate      = updDate;
     this.updPgm       = updPgm;
     this.rowVersion   = rowVersion;
     this.workFlowType = workFlowType;
     this.documentType = documentType;
 }