EasyBike.Models.ContractService.AddContractAsync C# (CSharp) Method

AddContractAsync() public method

public AddContractAsync ( Contract contract ) : Task
contract Contract
return Task
        public async Task AddContractAsync(Contract contract)
        {
            await _storageService.StoreContractAsync(contract).ConfigureAwait(false);
            contracts.Add(contract);
            AggregateStations(contract);
            //ContractRefreshed?.Invoke(contract, EventArgs.Empty);
        }