using Microsoft.Extensions.Configuration;
using TaskManager.Contracts.Dtos;
using TaskManager.Entity;
using TaskManager.Entity.Entitys;
using TaskManager.EntityFramework;
using Wood.Service.Controllers;
namespace TaskManager.Controllers
{
///
/// 人员资质信息
///
public class CherySupplierEmployeeLogService : NormalBaseController
{
public CherySupplierEmployeeLogService(JobDbContext context, IServiceProvider builder, IConfiguration configuration, IRepository repository) : base(context, builder, configuration, repository)
{
}
}
}