18 lines
401 B
C#
18 lines
401 B
C#
using Dolphin.ExamPictureCut.Localization;
|
|
using SqlSugar;
|
|
using Volo.Abp.Application.Services;
|
|
|
|
namespace Dolphin.ExamPictureCut;
|
|
|
|
public abstract class DolphinAppService : ApplicationService
|
|
{
|
|
protected ISqlSugarClient Db => LazyServiceProvider.LazyGetRequiredService<ISqlSugarClient>();
|
|
|
|
protected DolphinAppService()
|
|
{
|
|
LocalizationResource = typeof(DolphinResource);
|
|
}
|
|
}
|
|
|
|
|