public IActionResult PostNewBranch([FromForm] Branch NewBranch) { var BranchInDb = BranchManager.AddBranch(NewBranch); return(Ok(BranchInDb)); }