Exemplo n.º 1
0
        public CursorPointsUseCase(ICursorPointsEntity cursorPointsEntity, IEnclosurePointsEntity enclosurePointsEntity,
                                   LineFactory lineFactory, EnclosureFactory enclosureFactory)
        {
            _cursorPointsEntity    = cursorPointsEntity;
            _enclosurePointsEntity = enclosurePointsEntity;

            _lineFactory      = lineFactory;
            _enclosureFactory = enclosureFactory;
        }
Exemplo n.º 2
0
 public LineUseCase(ICursorPointsEntity cursorPointsEntity)
 {
     _cursorPointsEntity = cursorPointsEntity;
 }