public IActionResult DeleteBranch(int BranchId)
        {
            BranchManager.DeleteBranchById(BranchId);

            return(Ok());
        }