Exemplo n.º 1
0
        public void GetStudentReleaseRecord()
        {
            IRepositoryContext uow = new EntityFrameworkRepositoryContext();
            var repo   = new StudentReleaseRecordRepository(uow);
            var result = repo.GetAll();

            Assert.IsTrue(result.Count() > 0);
        }
 public void GetStudentReleaseRecord()
 {
     IRepositoryContext uow = new EntityFrameworkRepositoryContext();
     var repo = new StudentReleaseRecordRepository(uow);
     var result = repo.GetAll();
     Assert.IsTrue(result.Count() > 0);
 }