public static List <ProdutosAnteriores> BuscarPorId(int IdSacola) { string sql = "select * from ProdutosAnteriores where IdSacola = @IdSacola"; var retorno = BaseRepository.QuerySql <ProdutosAnteriores>(sql, new { IdSacola = IdSacola }); return(retorno); }
public static List <ProdutosAnteriores> BuscarPorNome(int IdSacola, string Nome) { string sql = "select * from ProdutosAnteriores where IdSacola = @IdSacola and Nome like @Nome"; var retorno = BaseRepository.QuerySql <ProdutosAnteriores>(sql, new { IdSacola = IdSacola, Nome = "%" + Nome + "%" }); return(retorno); }
public static List <ProdutosAnteriores> Buscar() { string sql = "select * from ProdutosAnteriores"; var retorno = BaseRepository.QuerySql <ProdutosAnteriores>(sql); return(retorno); }
public static List <ProdutoVendido> BuscarPorNome(int IdVendedora, string Nome) { string sql = "select * from ProdutoVendido where IdVendedora = @IdVendedora and Nome like @Nome"; var retorno = BaseRepository.QuerySql <ProdutoVendido>(sql, new { IdVendedora = IdVendedora, Nome = "%" + Nome + "%" }); return(retorno); }
public static List <ProdutoVendido> BuscarPorId(int IdVendedora) { string sql = "select * from ProdutoVendido where IdVendedora = @IdVendedora"; var retorno = BaseRepository.QuerySql <ProdutoVendido>(sql, new { IdVendedora = IdVendedora }); return(retorno); }
public static List <ProdutoVendido> Buscar() { string sql = "select * from ProdutoVendido"; var retorno = BaseRepository.QuerySql <ProdutoVendido>(sql); return(retorno); }
public static List <VendasAnteriores> BuscarPorMesDeEntrega(int IdSacola, string MesDeEntrega) { string sql = "select * from VendasAnteriores where IdSacola = @IdSacola and MesDeEntrega like @MesDeEntrega"; var retorno = BaseRepository.QuerySql <VendasAnteriores>(sql, new { IdSacola = IdSacola, MesDeEntrega = "%" + MesDeEntrega + "%" }); return(retorno); }