22 lines
		
	
	
		
			505 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			505 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
 | |
|             });
 | |
|         }
 | |
|     }
 | |
| }
 |