电子药箱通讯服务端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

IBaseBLL.cs 447B

12345678910111213141516171819202122
  1. using System;
  2. using System.Collections;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.ServiceModel;
  6. using System.Text;
  7. namespace RDH.Data.BLL
  8. {
  9. public interface IBaseBLL { }
  10. public interface IBaseBLL<T> : IBaseBLL
  11. {
  12. List<T> ListModels(int pageSize, int index);
  13. int GetModelCount();
  14. int Save(T obj);
  15. void Update(T obj);
  16. T Get(T obj);
  17. void Delete(T obj);
  18. }
  19. }