Пример #1
0
        public Response GetReciversOfDocument(GetReciversOfDocumentRequest request)
        {
            GetReciversOfDocumentResponse retval;

            try
            {
                retval = new GetReciversOfDocumentResponseOK(OpenDocumentSharing[request.DocId]);
                return(retval);
            }
            catch (Exception ex)
            {
                return(new ResponseError(ex.Message));
            }
        }
 public Response GetReciversOfDocument(GetReciversOfDocumentRequest request)
 {
     return(_service.GetReciversOfDocument(request));
 }