public IActionResult GetBranches(float lat, float lng)
        {
            BranchModel model = new BranchModel(_db);

            return(Ok(model.GetThreeClosestStores(lat, lng)));
        }