AppActs.API.Repository.MSTest.DeviceLocationRepositoryIntegration.Save C# (CSharp) Méthode

Save() private méthode

private Save ( ) : void
Résultat void
        public void Save()
        {
            IDeviceLocationRepository iDeviceLocationRepository =
                new DeviceLocationRepository(this.connectionString);

            DeviceLocation deviceLocation =
                new DeviceLocation
                (
                    1,
                    222.222333m,
                    399.220393m
                );

            iDeviceLocationRepository.Save(this.Application.Id, this.Device.Id, deviceLocation);
        }
DeviceLocationRepositoryIntegration