예제 #1
0
        public string SetPersonRelation(string persons, string relationType)
        {
            string retVal = "";
            var iModel = new PersonSearch(new Security(new WebUser()));

            try
            {
                iModel.SetDuplicateRelation(persons.ParseToGuidList());
            }
            catch (Exception ex1)
            {
                retVal = ex1.Message;
            }

            return WebHelper.MakeReturn(persons, retVal);
        }