12345678910111213141516171819202122 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Runtime.InteropServices;
- using System.Data.OleDb;
- using System.IO;
- using System.Web;
- using System.Data;
- using HNWD.Pregrant.Model;
- namespace HNWD.Pregrant.BusinessLogic
- {
- public interface IBusiness<Entity> where Entity : ModelBase, new()
- {
- ModelBase Business(string data);
- ModelExtBase<Entity> Query(string id);
- }
- }
|