Esempio n. 1
0
        public CheckListContext(string id, TrelloAuthorization auth)
            : base(auth)
        {
            Data.Id = id;

            CheckItems = new CheckItemCollection(this, auth);
        }
Esempio n. 2
0
        public CheckListContext(string id, TrelloAuthorization auth)
            : base(auth)
        {
            Data.Id = id;

            CheckItems            = new CheckItemCollection(this, auth);
            CheckItems.Refreshed += (s, e) => OnMerged(new[] { nameof(CheckItems) });
        }