public CreateModalModel(Services.ITodoListItemAppService todoListItemAppService, ICurrentUser currentUser)
 {
     _todoListItemAppService = todoListItemAppService;
     _CurrentUser            = currentUser;
 }
 public TodoListModel(Services.ITodoListAppService todoListAppService, Services.ITodoListItemAppService todoListItemAppService)
 {
     _todoListAppService     = todoListAppService;
     _todoListItemAppService = todoListItemAppService;
 }
 public _itemDetailsModel(Services.ITodoListItemAppService todoListItemAppService)
 {
     _todoListItemAppService = todoListItemAppService;
 }