public async Task Update(CountryMaster countryMaster)
 {
     try
     {
         _context.Entry(countryMaster).State = EntityState.Modified;
         await _context.SaveChangesAsync();
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }