Example #1
0
 public IActionResult DeleteCountry([FromBody] DeleteType obj)
 {
     _countryRepository.DeleteCountry(obj.Id, obj.isRemote);
     return(Ok());
 }