Exemplo n.º 1
0
        public List <InquirePriceModel> GetModels(SqlTransaction Transaction)
        {
            InquirePriceDAL edal = new InquirePriceDAL(Transaction);

            return(edal.Select());
        }
Exemplo n.º 2
0
        public List <InquirePriceModel> GetModels(InquirePriceQueryModel ObjQueryModel, SqlTransaction Transaction)
        {
            InquirePriceDAL edal = new InquirePriceDAL(Transaction);

            return(edal.Select(ObjQueryModel));
        }
Exemplo n.º 3
0
        public List <InquirePriceModel> GetModels(SqlConnection Connection)
        {
            InquirePriceDAL edal = new InquirePriceDAL(Connection);

            return(edal.Select());
        }