123456789101112131415161718192021222324252627282930313233 |
- namespace Vinno.vCloud.Common.FIS.Remedicals
- {
- public class vCloudExamRecord:IvCloudExamRecord
- {
- /// <inheritdoc />
- /// <summary>
- /// Gets the Id on Server
- /// </summary>
- public string Id { get; }
- /// <inheritdoc />
- /// <summary>
- /// Gets the exam id on local machine or computer.
- /// </summary>
- public string ExamId { get; }
- /// <inheritdoc />
- /// <summary>
- /// Gets the WorkOrderId of this record.
- /// </summary>
- public string WorkOrderId { get; }
- public vCloudExamRecord(string id, string examId, string workOrderId)
- {
- Id = id;
- ExamId = examId;
- WorkOrderId = workOrderId;
- }
- }
- }
|