public ICommandResult Handler(GetAllUserByIdListaCommand command) { command.Validate(); if (command.Invalid) { return(new GenericCommandResult(false, "Sem sucesso", command.Notifications)); } var data = _userListaRepository.GetAllUserByIdLista(command.IdLista); return(new GenericCommandResult(true, "sucesso", data)); }