ITrendToolItemConfigService.cs 276 B

123456789101112131415
  1. using System;
  2. using System.Collections.Generic;
  3. using CB.Entity;
  4. using System.Data;
  5. namespace CB.Interface
  6. {
  7. public interface ITrendToolItemConfigService : IRepository<TrendToolItemConfigInfo>
  8. {
  9. TrendToolFilterName GetToolFilterName(int PageID);
  10. }
  11. }