コード例 #1
0
ファイル: HrSetupController.cs プロジェクト: wasaya2/ERP-Core
        public IActionResult DeleteRelation(long id)
        {
            Relation a = Relation_repo.Find(id);

            if (a == null)
            {
                return(NotFound());
            }
            Relation_repo.Delete(a);
            return(Ok());
        }