AppActs.API.Test.Integration.DeviceLocationRepositoryIntegration.Save C# (CSharp) Méthode

Save() private méthode

private Save ( ) : void
Résultat 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