示例#1
0
文件: ERR.cs 项目: syurov/rt.srz
 /// <summary>
 /// Initializes a new instance of the <see cref="ERR"/> class.
 /// </summary>
 /// <param name="errorPosition">
 /// The error position.
 /// </param>
 /// <param name="errorCodeHl7">
 /// The error code hl 7.
 /// </param>
 /// <param name="levelSeriously">
 /// The level seriously.
 /// </param>
 /// <param name="errorCodeApp">
 /// The error code app.
 /// </param>
 public ERR(ERR2 errorPosition, ERR3 errorCodeHl7, string levelSeriously, ERR5 errorCodeApp)
 {
     ErrorPosition  = new ERR2();
     ErrorCodeHl7   = new ERR3();
     ErrorCodeApp   = new ERR5();
     ErrorPosition  = errorPosition;
     ErrorCodeHl7   = errorCodeHl7;
     LevelSeriously = levelSeriously;
     ErrorCodeApp   = errorCodeApp;
 }
示例#2
0
文件: ERR.cs 项目: syurov/rt.srz
 /// <summary>
 ///   Initializes a new instance of the <see cref="ERR" /> class.
 /// </summary>
 public ERR()
 {
     ErrorPosition = new ERR2();
     ErrorCodeHl7  = new ERR3();
     ErrorCodeApp  = new ERR5();
 }