ZiGongCallReportApplication.cs 873 B

1234567891011121314151617
  1. using Hotline.Caching.Interfaces;
  2. using Hotline.CallCenter.Tels;
  3. using Hotline.DI;
  4. using Hotline.Repository.SqlSugar.CallCenter;
  5. using Hotline.Users;
  6. using XF.Domain.Dependency;
  7. using XF.Domain.Repository;
  8. namespace Hotline.Application.StatisticalReport.CallReport;
  9. [Injection(AppScopes = EAppScope.ZiGong)]
  10. public class ZiGongCallReportApplication : CallReportApplicationBase, ICallReportApplication, IScopeDependency
  11. {
  12. public ZiGongCallReportApplication(ISystemSettingCacheManager systemSettingCacheManager, ICallNativeRepository callNativeRepository, IRepository<User> userRepository, IRepository<Work> workRepository, IRepository<TelRest> telRestRepository, ISystemDicDataCacheManager systemDicDataCacheManager) : base(systemSettingCacheManager, callNativeRepository, userRepository, workRepository, telRestRepository, systemDicDataCacheManager)
  13. {
  14. }
  15. }