Esempio n. 1
0
 private void UpdateItemCommandExecuted(CheckListItem item)
 {
     this.context.UpdateCkeckListItem(item.ToCheckListDto());
 }
Esempio n. 2
0
 private void DeleteItemCommandExecuted(CheckListItem item)
 {
     this.context.DeleteCkeckListItem(item.Id);
     source.Remove(item);
 }