123456789101112131415161718 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using sql_pagining.models;
- using Dapper;
- using MySqlConnector;
- namespace sql_pagining.models
- {
- class Globals
- {
- public static IDataProvider dataProvider;
- public static int PAGE_LEN = 20;
- }
- }
|