BaseService.cs 236 B

123456789101112
  1. using Repository;
  2. namespace Service
  3. {
  4. /// <summary>
  5. /// 基础服务定义
  6. /// </summary>
  7. /// <typeparam name="T"></typeparam>
  8. public class BaseService<T> : BaseRepository<T> where T : class, new()
  9. {
  10. }
  11. }