30 lines
1020 B
C#
30 lines
1020 B
C#
using JiShe.CollectBus.Common.Consts;
|
|
using JiShe.CollectBus.Common.Enums;
|
|
using JiShe.CollectBus.Common.Extensions;
|
|
using JiShe.CollectBus.Common.Helpers;
|
|
using JiShe.CollectBus.FreeSql;
|
|
using JiShe.CollectBus.Localization;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using JiShe.CollectBus.FreeRedis;
|
|
using Volo.Abp.Application.Services;
|
|
using Volo.Abp.Timing;
|
|
|
|
namespace JiShe.CollectBus;
|
|
|
|
[ApiExplorerSettings(GroupName = CollectBusDomainSharedConsts.Business)]
|
|
public abstract class CollectBusAppService : ApplicationService
|
|
{
|
|
public IFreeSqlProvider SqlProvider => LazyServiceProvider.LazyGetRequiredService<IFreeSqlProvider>();
|
|
protected IFreeRedisProvider FreeRedisProvider => LazyServiceProvider.LazyGetService<IFreeRedisProvider>()!;
|
|
|
|
protected CollectBusAppService()
|
|
{
|
|
LocalizationResource = typeof(CollectBusResource);
|
|
ObjectMapperContext = typeof(CollectBusApplicationModule);
|
|
}
|
|
}
|