1234567891011121314 |
- using Hotline.CallCenter.Calls;
- using Hotline.DI;
- using XF.Domain.Dependency;
- using XF.Domain.Repository;
- namespace Hotline.Application.Bigscreen;
- [Injection(AppScopes = EAppScope.ZiGong | EAppScope.LuZhou)]
- public class SeatStateDataService : SeatStateDataServiceBase, ISeatStateDataService, IScopeDependency
- {
- public SeatStateDataService(IRepository<CallNative> repository) : base(repository)
- {
- }
- }
|