Merge remote-tracking branch 'origin/Insight' into Insight
commit
312839354c
|
|
@ -0,0 +1,27 @@
|
|||
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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue