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