public bool Exist(ToDoListDto todoList) { var domain = _mapper.Map <ToDoList>(todoList); return(_toDoListRepository.Exist(domain)); }