public Stroke Get(Guid strokeId)
        {
            var stroke = _strokeDataService.Get(strokeId);

            stroke.Lines = _lineDataService.GetByStrockId(strokeId);
            return(stroke);
        }