public RptResumenEmpresaTipoDispositivo(DateTime desdeFecha, DateTime hastaFecha, int empresaId, int tipoId, LainsaSci ctx) : this() { TipoDispositivo tipo = null; tipo = CntLainsaSci.GetTipoDispositivo(tipoId, ctx); empresa = CntLainsaSci.GetEmpresa(empresaId, ctx); this.DataSource = CntInforme.GetEmpresaTipoView(desdeFecha, hastaFecha, empresa, tipo, false, ctx); }
public RptFacturableEmpresaTipoDispositivo(DateTime desdeFecha, DateTime hastaFecha, int empresaId, int tipoId, LainsaSci ctx) : this() { TipoDispositivo tipo = null; if (tipoId != -1) { tipo = CntLainsaSci.GetTipoDispositivo(tipoId, ctx); } empresa = CntLainsaSci.GetEmpresa(empresaId, ctx); this.DataSource = CntInforme.GetEmpresaTipoView(desdeFecha, hastaFecha, empresa, tipo, true, ctx); }