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 where Entity : ModelBase, new() { ModelBase Business(string data); ModelExtBase Query(string id); } }