28 lines
887 B
C#
28 lines
887 B
C#
using Microsoft.Extensions.Configuration;
|
|
using OpenAuth.App.BaseApp.Base;
|
|
using OpenAuth.App.Interface;
|
|
using OpenAuth.Repository;
|
|
using OpenAuth.Repository.Domain;
|
|
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace OpenAuth.App.ServiceApp
|
|
{
|
|
public class AdminTaskManageApp : SqlSugarBaseApp<InsTif, SugarDbContext>
|
|
{
|
|
private readonly IConfiguration _configuration;
|
|
private readonly ISqlSugarClient client;
|
|
public AdminTaskManageApp(ISugarUnitOfWork<SugarDbContext> unitWork,
|
|
ISimpleClient<InsTif> repository, IAuth auth,ISqlSugarClient sqlSugarClient,
|
|
IConfiguration configuration) : base(unitWork, repository, auth)
|
|
{
|
|
_configuration = configuration;
|
|
this.client = sqlSugarClient;
|
|
}
|
|
}
|
|
}
|