ResultWorkTask.cs 272 B

123456789101112
  1. using System;
  2. namespace Schedule
  3. {
  4. public class ResultWorkTask : ResultTrainingTask
  5. {
  6. public ResultWorkTask(WorkResultSlot slot, int workId, ResultWorkMgr.ResultType resultType) : base(slot, workId, resultType)
  7. {
  8. base.Init(slot, workId, resultType);
  9. }
  10. }
  11. }