You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
	
	
		
		
			
	
    
		
			
				
					
						                                     | 
						 | 
						using Shentun.Utilities;using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;using Xunit.Abstractions;
namespace Shentun.Peis.PlugIns.Tests{    public class LisResultImportPlugInsTest    {        private readonly ITestOutputHelper _output;        public LisResultImportPlugInsTest(ITestOutputHelper testOutputHelper)        {            _output = testOutputHelper;
        }
        [Fact]        public async Task ImportResultAsync()        {            string configParm;            string filePath = DirectoryHelper.GetAppDirectory() + "/appsettings.json";            configParm = File.ReadAllText(filePath);
            var input = new LisResultImportPlugInsDbBase(configParm);            var item = await input.ImportResultAsync(                new LisResultImportPlugInsInput()                {                    PatientRegisterId = new Guid("3a123c55-06de-4988-691c-448b5af468ff")                });            
        }    }}
  |