| 12345678910111213141516171819 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace LoginDAL
- {
- //server_entry
- public partial class server_entry : SQLHelper.SQLBasisOperation<LoginModel.server_entry>
- {
- public server_entry(SQLHelper.ConnectionParameters connectionArgument)
- {
- base.ConnectionArguments = connectionArgument;
- }
- }
- }
|