AppActs.API.Repository.MSTest.FeedbackRepositoryIntegration.SaveThrowsDataAccessLayerException C# (CSharp) Method

SaveThrowsDataAccessLayerException() private method

private SaveThrowsDataAccessLayerException ( ) : void
return void
        public void SaveThrowsDataAccessLayerException()
        {
            IFeedbackRepository iFeedbackRepository = new FeedbackRepository(this.connectionString);

            iFeedbackRepository.Save(0, 0, new FeedbackItem("feedback", AppActs.DomainModel.Enum.RatingType.Five, "Main", Guid.NewGuid(), DateTime.Now, "1.1.1.1"));
        }
FeedbackRepositoryIntegration