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

Save() private method

private Save ( ) : void
return void
        public void Save()
        {
            IErrorRepository iErrorRepository = new ErrorRepository(this.client, this.database);

            ErrorItem errorItem = new ErrorItem
                (
                    this.Application.Id,
                    this.Device.Id,
                    "data",
                    "eventName",
                    new DeviceDynamicInformation(2342344423333332333, 2342344423333332333, 50),
                    new AppActs.DomainModel.Exception.DeviceException("message", "stackTrace", "source", "data"),
                    "screenName",
                    Guid.NewGuid(),
                    DateTime.Now,
                    "1.1"
                );

            iErrorRepository.Save(errorItem);
        }
ErrorRepositoryIntegration