电子药箱通讯服务端
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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. }