コード例 #1
0
        public TipoNotaDTO TipoNotaEntityToDTO(tipo_nota tipoNotaEntity)
        {
            if (tipoNotaEntity != null)
            {
                TipoNotaDTO tipoNotaDTO = new TipoNotaDTO();

                tipoNotaDTO.id = tipoNotaEntity.ID;
                tipoNotaDTO.nombre = tipoNotaEntity.nombre;
                tipoNotaDTO.estadoVigente = tipoNotaEntity.estado_vigente;

                return tipoNotaDTO;
            }
            return null;
        }
コード例 #2
0
        public tipo_nota TipoNotaDTOToEntity(TipoNotaDTO tipoNotaDTO)
        {
            if (tipoNotaDTO != null)
            {
                tipo_nota tipoNotaEntity = new tipo_nota();

                tipoNotaEntity.ID = tipoNotaDTO.id;
                tipoNotaEntity.nombre = tipoNotaDTO.nombre;
                tipoNotaEntity.estado_vigente = tipoNotaDTO.estadoVigente;

                return tipoNotaEntity;
            }
            return null;
        }