Esempio n. 1
0
        public HttpResponseMessage Continue(Guid token, List <Guid> id)
        {
            var onwers = _process.Continue(token, id, UpdatedId);

            foreach (var item in onwers)
            {
                Notifications.NotifyClientActivity(item, TypeNotifications.Notifications, $"Select Vessel", HttpStatusCode.OK, item.Owner);
            }
            return(Request.CreateResponse(HttpStatusCode.OK));
        }