Ejemplo n.º 1
0
        public HttpResponseMessage DeleteAction(int actionid, int contactId)
        {
            DeactivateActionContactResponse response = actionService.
                                                       ContactDeleteForAction(new DeactivateActionContactRequest()
            {
                ActionId = actionid, ContactId = contactId
            });

            return(Request.BuildResponse(response));
        }