Example #1
0
        public static IEnumerable <HTTPSNotification> GetHTTPSNotifications(this UsersAPI UsersAPI,
                                                                            User User,
                                                                            params NotificationMessageType[]  NotificationMessageTypes)


        => UsersAPI.GetNotificationsOf <HTTPSNotification>(User,
                                                           NotificationMessageTypes);
Example #2
0
        public static IEnumerable <EMailNotification> GetEMailNotifications(this UsersAPI UsersAPI,
                                                                            Organization Organization,
                                                                            params NotificationMessageType[]  NotificationMessageTypes)


        => UsersAPI.GetNotificationsOf <EMailNotification>(Organization,
                                                           NotificationMessageTypes);
Example #3
0
        public static IEnumerable <TelegramGroupNotification> GetTelegramGroupNotifications(this UsersAPI UsersAPI,
                                                                                            Organization_Id OrganizationId,
                                                                                            params NotificationMessageType[]  NotificationMessageTypes)


        => UsersAPI.GetNotificationsOf <TelegramGroupNotification>(OrganizationId,
                                                                   NotificationMessageTypes);
Example #4
0
        public static IEnumerable <EMailNotification> GetEMailNotifications(this UsersAPI UsersAPI,
                                                                            UserGroup UserGroup,
                                                                            params NotificationMessageType[]  NotificationMessageTypes)


        => UsersAPI.GetNotificationsOf <EMailNotification>(UserGroup,
                                                           NotificationMessageTypes);
Example #5
0
        public static IEnumerable <TelegramGroupNotification> GetTelegramGroupNotifications(this UsersAPI UsersAPI,
                                                                                            User User,
                                                                                            params NotificationMessageType[]  NotificationMessageTypes)


        => UsersAPI.GetNotificationsOf <TelegramGroupNotification>(User,
                                                                   NotificationMessageTypes);