Пример #1
0
        public DTO.ResponseService <DTO.Person> GetById(string Id)
        {
            DTO.ResponseService <DTO.Person> res = svc.GetById(Id);
            //if( !res.IsError && svc.GetById(Id).DataResponse != null)
            //{
            //    DTO.ResponseService<DTO.SignatureImg> resImg = svc.GetOicPersonSignImg(Id);

            //    if((!resImg.IsError) && resImg.DataResponse !=null)
            //    {
            //        byte[] result = ByteArrayHelper.ConvertStringToByte(resImg.DataResponse.Signture);
            //        res.DataResponse.IMG_SIGN = result;
            //    }
            //}

            return(res);
        }