Example #1
0
		public CalSource (CalViewCtrl ctrl, string qry)
		{
			this._CalViewCtrl = ctrl;
			qry = qry.ToLowerInvariant ();
			this.Events = ctrl.Events.Where (x => x.Title.ToLowerInvariant ().Contains (qry)).ToList ();
		}
Example #2
0
		public CalSource (CalViewCtrl ctrl)
		{
			this.Events = ctrl.Events;
			this._CalViewCtrl = ctrl;
		}