Ejemplo n.º 1
0
        public IActionResult DeleteMasterAccount(long id)
        {
            MasterAccount fin = Master_repo.Find(id);

            if (fin == null)
            {
                return(NotFound());
            }

            Master_repo.Delete(fin);
            return(Ok());
        }