예제 #1
0
 public IEnumerable <PointDto> CreatePoints(Point[] points)
 {
     psvc.CreatePoints(points);
     uow.Save();
     return(points.Select(p => PointDto.FromPoint(p)));
 }