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