コード例 #1
0
        public void DeleteCountry(int countryId)
        {
            CountryIdentifiers country = _context.CountryIdentifiers.Find(countryId);

            _context.CountryIdentifiers.Remove(country);
        }
コード例 #2
0
 public void UpdateCountry(CountryIdentifiers country)
 {
     _context.Entry(country).State = EntityState.Modified;
 }
コード例 #3
0
 public void InsertCountry(CountryIdentifiers country)
 {
     _context.CountryIdentifiers.Add(country);
 }