コード例 #1
0
        public ICommandResult Execute(DeleteTipoEvento_IdiomaCommand command)
        {
            var TipoEvento_Idioma = TipoEvento_IdiomaRepository.GetById(command.Id);

            TipoEvento_IdiomaRepository.Delete(TipoEvento_Idioma);
            unitOfWork.Commit();
            return(new CommandResult(true));
        }