SeatStateDataService.cs 418 B

1234567891011121314
  1. using Hotline.CallCenter.Calls;
  2. using Hotline.DI;
  3. using XF.Domain.Dependency;
  4. using XF.Domain.Repository;
  5. namespace Hotline.Application.Bigscreen;
  6. [Injection(AppScopes = EAppScope.ZiGong | EAppScope.LuZhou)]
  7. public class SeatStateDataService : SeatStateDataServiceBase, ISeatStateDataService, IScopeDependency
  8. {
  9. public SeatStateDataService(IRepository<CallNative> repository) : base(repository)
  10. {
  11. }
  12. }