vCloudExamRecord.cs 782 B

123456789101112131415161718192021222324252627282930313233
  1. namespace Vinno.vCloud.Common.FIS.Remedicals
  2. {
  3. public class vCloudExamRecord:IvCloudExamRecord
  4. {
  5. /// <inheritdoc />
  6. /// <summary>
  7. /// Gets the Id on Server
  8. /// </summary>
  9. public string Id { get; }
  10. /// <inheritdoc />
  11. /// <summary>
  12. /// Gets the exam id on local machine or computer.
  13. /// </summary>
  14. public string ExamId { get; }
  15. /// <inheritdoc />
  16. /// <summary>
  17. /// Gets the WorkOrderId of this record.
  18. /// </summary>
  19. public string WorkOrderId { get; }
  20. public vCloudExamRecord(string id, string examId, string workOrderId)
  21. {
  22. Id = id;
  23. ExamId = examId;
  24. WorkOrderId = workOrderId;
  25. }
  26. }
  27. }