コード例 #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));
        }