using Abp.Authorization; using Abp.Configuration; using Abp.Notifications; using VberZero.AppService.Notifications; using VberZero.DomainService.Notifications; namespace VberAdmin.BaseSystem.Notifications; [AbpAuthorize] public class NotificationAppService : NotificationAppServiceBase, INotificationAppService { public NotificationAppService(IUserNotificationManager userNotificationManager, INotificationSubscriptionManager notificationSubscriptionManager, IAppNotifier appNotifier, ISettingManager settingManager) : base(userNotificationManager, notificationSubscriptionManager, appNotifier, settingManager) { } }