Beispiel #1
0
        public CursorPointsUseCase(ICursorPointsEntity cursorPointsEntity, IEnclosurePointsEntity enclosurePointsEntity,
                                   LineFactory lineFactory, EnclosureFactory enclosureFactory)
        {
            _cursorPointsEntity    = cursorPointsEntity;
            _enclosurePointsEntity = enclosurePointsEntity;

            _lineFactory      = lineFactory;
            _enclosureFactory = enclosureFactory;
        }
Beispiel #2
0
 public EnclosurePointsUseCase(IEnclosurePointsEntity enclosurePointsEntity)
 {
     _enclosurePointsEntity = enclosurePointsEntity;
 }