示例#1
0
        public void AddNotification(Notifications notification)//[FromBody]string value
        {
            NotificationsApi notificationApi = new NotificationsApi();

            if (notification != null)
            {
                notificationApi.AddNotifications(notification);
            }
        }