23 lines
654 B
C#
23 lines
654 B
C#
using Learn.Archives.API.Controllers.Dto;
|
|
using Learn.Archives.API.Expand;
|
|
using Learn.Archives.Core.Common;
|
|
using Learn.Archives.Core.Model;
|
|
using Microsoft.AspNetCore.Authorization;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using System.Diagnostics;
|
|
using System.Security.Claims;
|
|
using UserCenter.Model;
|
|
|
|
namespace Learn.Archives.API.Controllers
|
|
{
|
|
public class SchoolBusinessController : BackController<SchoolBusiness>
|
|
{
|
|
readonly Repository<SchoolBusiness> baseService;
|
|
public SchoolBusinessController(Repository<SchoolBusiness> baseService) : base(baseService)
|
|
{
|
|
this.baseService = baseService;
|
|
}
|
|
|
|
}
|
|
}
|