예제 #1
0
        public List <InquirePriceModel> GetModels(SqlTransaction Transaction)
        {
            InquirePriceDAL edal = new InquirePriceDAL(Transaction);

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

            return(edal.Select(ObjQueryModel));
        }
예제 #3
0
        public List <InquirePriceModel> GetModels(SqlConnection Connection)
        {
            InquirePriceDAL edal = new InquirePriceDAL(Connection);

            return(edal.Select());
        }