AppActs.API.Repository.MSTest.DeviceLocationRepositoryIntegration.Save C# (CSharp) Method

Save() private method

private Save ( ) : void
return 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