first commit
This commit is contained in:
@ -0,0 +1,17 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
using KonSoft.Admin.Localization;
|
||||
using Volo.Abp.Application.Services;
|
||||
|
||||
namespace KonSoft.Admin;
|
||||
|
||||
/* Inherit your application services from this class.
|
||||
*/
|
||||
public abstract class AdminAppService : ApplicationService
|
||||
{
|
||||
protected AdminAppService()
|
||||
{
|
||||
LocalizationResource = typeof(AdminResource);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user