Exemple #1
0
        public void should_Verify_Site()
        {
            //13080 Mbagathi DH

            var fac = _activationService.Verify(13080);

            Assert.IsNotNull(fac);
            Console.WriteLine(fac);
        }
 public IActionResult FindFacility(int code)
 {
     try
     {
         var fac = _activationService.Verify(code);
         return(Ok(fac));
     }
     catch (Exception e)
     {
         Log.Debug($"Error loading counties: {e}");
         return(StatusCode(500, "Error loading counties"));
     }
 }