Exemple #1
0
        public IActionResult GetBranchByLocation(string branchLocation)
        {
            Branches branch = manager.GetBranchByLocation(branchLocation);

            if (branch != null)
            {
                return(Ok(branch));
            }
            return(NotFound());
        }