コード例 #1
0
        public List <TY_ReferendumReportModel> GetModels(SqlTransaction Transaction)
        {
            TY_ReferendumReportDAL tdal = new TY_ReferendumReportDAL(Transaction);

            return(tdal.Select());
        }
コード例 #2
0
        public List <TY_ReferendumReportModel> GetModels(TY_ReferendumReportQueryModel ObjQueryModel, SqlTransaction Transaction)
        {
            TY_ReferendumReportDAL tdal = new TY_ReferendumReportDAL(Transaction);

            return(tdal.Select(ObjQueryModel));
        }
コード例 #3
0
        public List <TY_ReferendumReportModel> GetModels(SqlConnection Connection)
        {
            TY_ReferendumReportDAL tdal = new TY_ReferendumReportDAL(Connection);

            return(tdal.Select());
        }