You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
679 B
23 lines
679 B
6 days ago
|
using Microsoft.Extensions.Configuration;
|
||
|
using TaskManager.Contracts.Dtos;
|
||
|
using TaskManager.Controllers;
|
||
|
using TaskManager.Entity;
|
||
|
using TaskManager.EntityFramework;
|
||
|
using Wood.Service.Controllers;
|
||
|
|
||
|
namespace TaskManager.Controllers
|
||
|
{
|
||
|
|
||
|
/// <summary>
|
||
|
/// 过焊装未过总装
|
||
|
/// </summary>
|
||
|
public class CherySupplierPorHSCHEDULLogService : NormalBaseController<SUPPLIER_PRO_HSCHEDUL_LOGS>
|
||
|
{
|
||
|
public CherySupplierPorHSCHEDULLogService(JobDbContext context, IServiceProvider builder, IConfiguration configuration, IRepository<SUPPLIER_PRO_HSCHEDUL_LOGS> repository) : base(context, builder, configuration, repository)
|
||
|
{
|
||
|
}
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|