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.
20 lines
700 B
20 lines
700 B
using Microsoft.Extensions.Configuration;
|
|
using OfficeOpenXml.FormulaParsing.Excel.Functions.Information;
|
|
using TaskManager.Contracts.Dtos;
|
|
using TaskManager.Entity;
|
|
using TaskManager.Entity.Entitys;
|
|
using TaskManager.EntityFramework;
|
|
using Wood.Service.Controllers;
|
|
|
|
namespace TaskManager.Controllers
|
|
{
|
|
/// <summary>
|
|
/// BOM主数据
|
|
/// </summary>
|
|
public class CherySupplierBomLogService : NormalBaseController<SUPPLIER_BOM_LOGS>
|
|
{
|
|
public CherySupplierBomLogService(JobDbContext context, IServiceProvider builder, IConfiguration configuration, IRepository<SUPPLIER_BOM_LOGS> repository) : base(context, builder, configuration, repository)
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|