14 lines
		
	
	
		
			330 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			330 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using KonSoft.Dispatch.Localization;
 | |
| using Volo.Abp.AspNetCore.Mvc;
 | |
| 
 | |
| namespace KonSoft.Dispatch.Controllers;
 | |
| 
 | |
| /* Inherit your controllers from this class.
 | |
|  */
 | |
| public abstract class DispatchController : AbpControllerBase
 | |
| {
 | |
|     protected DispatchController()
 | |
|     {
 | |
|         LocalizationResource = typeof(DispatchResource);
 | |
|     }
 | |
| } |