Exemplo n.º 1
0
        public void should_GetVisitType()
        {
            var visitType = _emrRepository.GetVisitType(219);

            Assert.NotNull(visitType);

            Debug.Print($"{visitType.ToStringDetail()}");

            visitType = _emrRepository.GetVisitType(12);
            Assert.NotNull(visitType);
            Debug.Print($"{visitType.ToStringDetail()}");
        }