Esempio n. 1
0
        public bool Remove(int id)
        {
            try
            {
                _context.Remove(_context.UniversityMaster.Single(e => e.UniversityId == id));
                _context.SaveChanges();

                return(true);
            }
            catch
            {
                return(false);
            }
        }
Esempio n. 2
0
        public bool Remove(int id)
        {
            try
            {
                _context.Remove(_context.ExperienceMaster.Single(e => e.ExpId == id));
                _context.SaveChanges();

                return(true);
            }
            catch
            {
                return(false);
            }
        }
Esempio n. 3
0
        public bool Remove(int id)
        {
            try
            {
                _context.Remove(_context.EmploymentypeMaster.Single(e => e.EmplyId == id));
                _context.SaveChanges();

                return(true);
            }
            catch
            {
                return(false);
            }
        }
Esempio n. 4
0
        public bool Remove(int id)
        {
            try
            {
                _context.Remove(_context.InstitutionMaster.Single(e => e.InstitutionId == id));
                _context.SaveChanges();

                return(true);
            }
            catch
            {
                return(false);
            }
        }