20 lines
		
	
	
		
			446 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			446 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using Volo.Abp.Autofac;
 | |
| using Volo.Abp.Data;
 | |
| using Volo.Abp.Modularity;
 | |
| 
 | |
| namespace KonSoft.Shared.Hosting;
 | |
| 
 | |
| [DependsOn(
 | |
|     typeof(AbpAutofacModule),
 | |
|     typeof(AbpDataModule)
 | |
| )]
 | |
| public class KonSoftSharedHostingModule : AbpModule
 | |
| {
 | |
|     public override void ConfigureServices(ServiceConfigurationContext context)
 | |
|     {
 | |
|         Configure<AbpDbConnectionOptions>(options =>
 | |
|         {
 | |
|             // TODO Mapping DbConnections
 | |
|         });
 | |
|     }
 | |
| } |