public ICommandResult Execute(CreateOrUpdateEntidadCommand command) { Entidad _Entidad = AutoMapper.Mapper.Map <CreateOrUpdateEntidadCommand, Entidad>(command); if (command.Id == 0) { EntidadRepository.Add(_Entidad); } else { EntidadRepository.Update(_Entidad); } unitOfWork.Commit(); AutoMapper.Mapper.Map <Entidad, CreateOrUpdateEntidadCommand>(_Entidad, command); return(new CommandResult(true)); }
public bool Update(Entidad t) { return(objEntidadRepository.Update(t)); }