async Task postLocationAsync() { BirdLocationModel model = new BirdLocationModel() { Longitude = Lon, Latitude = Lat, Bird = TagLabel.Text }; await AzureManager.AzureManagerInstance.PostBirdLocation(model); }
public async Task PostBirdLocation(BirdLocationModel birdLocationTable) { await this.birdLocationTable.InsertAsync(birdLocationTable); }