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);
        }
        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);
        }
        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);
        }
        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);
        }