コード例 #1
0
ファイル: LogsController.cs プロジェクト: lulzzz/fms-insight
 public LogEntry RecordWashCompleted([FromBody] NewWash insp)
 {
     return(_server.RecordWashCompleted(
                insp.MaterialID,
                insp.Process,
                insp.WashLocationNum,
                insp.ExtraData == null ? new Dictionary <string, string>() : insp.ExtraData,
                insp.Elapsed,
                insp.Active
                ));
 }