AppActs.API.Test.Integration.DeviceLocationRepositoryIntegration.Save C# (CSharp) Method

Save() private method

private Save ( ) : void
return void
        public void Save()
        {
            IDeviceLocationRepository iDeviceLocationRepository =
                new DeviceLocationRepository(this.client, this.database);

            DeviceLocation deviceLocation =
                new DeviceLocation
                (
                    this.Device.Id,
                    222.222333m,
                    399.220393m
                );

            iDeviceLocationRepository.Save(deviceLocation);
        }
DeviceLocationRepositoryIntegration