public static void DeleteCountry(CountryDto pCountry) { using (var _db = new Rbr_Db()) { using (var _tx = new Transaction(_db, pCountry)) { CallingPlanManager.DeleteCountry(_db, pCountry); _tx.Commit(); } } }