AppActs.Client.Repository.SqlServer.MSTest.ApplicationRepositoryIntegration.Save C# (CSharp) Method

Save() private method

private Save ( ) : void
return void
        public void Save()
        {
            IApplicationRepository applicationRepository = new ApplicationRepository(this.Client, this.Database);

            Application application = new Application(Guid.NewGuid().ToString());
            applicationRepository.Save(application);

            Assert.IsNotNull(application.Id);
        }