Example #1
0
 public void Create(IEnumerable <StopDTO> stopDTOs)
 {
     _stopValidator.Validate(stopDTOs);
     foreach (var stopDTO in stopDTOs)
     {
         Create(stopDTO);
     }
 }