Ejemplo n.º 1
0
 public void Release()
 {
     _timeBoxRepository.Clear();
 }
Ejemplo n.º 2
0
 public IList <TimeBox> Save(IList <TimeBox> timeBoxs)
 {
     _timeBoxRepository.Clear();
     return(_timeBoxRepository.GetTimeBoxesByRange(timeBoxs.Select(o => o.Agent.Id).ToArray(), _watchRange.Start,
                                                   _watchRange.End));
 }