public Servicios.DTO.Precios.CambioDePreciosDeVenta EntidadToDto(CambioDePreciosDeVenta entidad, Inteldev.Fixius.Servicios.DTO.Precios.CambioDePreciosDeVenta dto) { dto.Id = entidad.Id; dto.Nombre = entidad.Nombre; dto.Codigo = entidad.Codigo; dto.Estado = (Servicios.DTO.Precios.EstadoCambioDePreciosDeVenta)entidad.Estado; dto.FechaDesde = entidad.FechaDesde; dto.FechaHasta = entidad.FechaHasta; dto.Folder = entidad.Folder; dto.Items = CreateDataTable(); this.cargaDataTable(dto.Items, entidad.ItemsCambioDePrecioDeVenta); dto.TipoDeCambio = (Servicios.DTO.Precios.TipoCambioDePreciosDeVenta)entidad.TipoDeCambio; this.SetExpression(dto.Items); return(dto); }
public Servicios.DTO.Precios.CambioDePreciosDeVenta EntidadToDto(CambioDePreciosDeVenta entidad) { return(this.EntidadToDto(entidad, new Servicios.DTO.Precios.CambioDePreciosDeVenta())); }