22 lines
553 B
C#
22 lines
553 B
C#
using OpenAuth.Auth.Interface;
|
|
using OpenAuth.BaseApp;
|
|
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 Bus.App
|
|
{
|
|
public class DroneCaseInfoApp : SqlSugarBaseApp<DroneCaseInfo, SugarDbContext>
|
|
{
|
|
public DroneCaseInfoApp(ISugarUnitOfWork<SugarDbContext> unitWork, ISimpleClient<DroneCaseInfo> repository, IAuth auth) : base(unitWork, repository, auth)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|