public static IEnumerable <HTTPSNotification> GetHTTPSNotifications(this UsersAPI UsersAPI, User User, params NotificationMessageType[] NotificationMessageTypes) => UsersAPI.GetNotificationsOf <HTTPSNotification>(User, NotificationMessageTypes);
public static IEnumerable <EMailNotification> GetEMailNotifications(this UsersAPI UsersAPI, Organization Organization, params NotificationMessageType[] NotificationMessageTypes) => UsersAPI.GetNotificationsOf <EMailNotification>(Organization, NotificationMessageTypes);
public static IEnumerable <TelegramGroupNotification> GetTelegramGroupNotifications(this UsersAPI UsersAPI, Organization_Id OrganizationId, params NotificationMessageType[] NotificationMessageTypes) => UsersAPI.GetNotificationsOf <TelegramGroupNotification>(OrganizationId, NotificationMessageTypes);
public static IEnumerable <EMailNotification> GetEMailNotifications(this UsersAPI UsersAPI, UserGroup UserGroup, params NotificationMessageType[] NotificationMessageTypes) => UsersAPI.GetNotificationsOf <EMailNotification>(UserGroup, NotificationMessageTypes);
public static IEnumerable <TelegramGroupNotification> GetTelegramGroupNotifications(this UsersAPI UsersAPI, User User, params NotificationMessageType[] NotificationMessageTypes) => UsersAPI.GetNotificationsOf <TelegramGroupNotification>(User, NotificationMessageTypes);