예제 #1
0
파일: FccManager.cs 프로젝트: MoZapT/fcc
        public async Task <bool> DeletePersonRelation(string inviter, string invited, RelationType type)
        {
            RelationType counterType = FccRelationTypeHelper.GetCounterRelationType(type);

            return(await _repo.DeletePersonRelation(inviter, invited, type, counterType));
        }