コード例 #1
0
        public void Init()
        {
            var locationsService = new SquareLocationsService(this.Config, this.Credentials);

            this._itemsService = new SquareItemsService(this.Config, this.Credentials, locationsService);

            var locations = locationsService.GetActiveLocationsAsync(CancellationToken.None, null).Result;

            this._defaultLocationId = locations.OrderBy(l => l.Name).First().Id;
        }