18 lines
387 B
C#
18 lines
387 B
C#
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);
|
|
}
|
|
}
|