Exemplo n.º 1
0
 public IActionResult DeleteBranch(string Id)
 {
     try
     {
         var result = _branch.DeleteBranch(Id);
         return(Ok(result));
     }
     catch (Exception ex)
     {
         throw;
     }
 }