IBusiness.cs 480 B

12345678910111213141516171819202122
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using System.Runtime.InteropServices;
  7. using System.Data.OleDb;
  8. using System.IO;
  9. using System.Web;
  10. using System.Data;
  11. using HNWD.Pregrant.Model;
  12. namespace HNWD.Pregrant.BusinessLogic
  13. {
  14. public interface IBusiness<Entity> where Entity : ModelBase, new()
  15. {
  16. ModelBase Business(string data);
  17. ModelExtBase<Entity> Query(string id);
  18. }
  19. }