private void SystemCountryCodeAdd()
        {
            SystemCountryCodeController controller = new SystemCountryCodeController();
            ActionResult result = controller.PostSystemCountryCode(new SystemCountryCodePoco[] { _systemCountry });

            Assert.IsInstanceOfType(result, typeof(OkResult));
        }
 private void SystemCountryCodeRemove()
 {
     SystemCountryCodeController controller = new SystemCountryCodeController();
     ActionResult result = controller.DeleteSystemCountryCode(new SystemCountryCodePoco[] { _systemCountry });
 }