NewTimeline() static private method

static private NewTimeline ( ) : Timeline
return Timeline
        public static Timeline TimelineNew(int sourceId, SourceType sourceType)
        {
            var timeline = Timeline.NewTimeline();

            timeline.SourceId     = sourceId;
            timeline.SourceTypeId = (int)sourceType;

            return(timeline);
        }
        public static Timeline TimelineNew()
        {
            var timeline = Timeline.NewTimeline();

            return(timeline);
        }