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.
16 lines
578 B
16 lines
578 B
2 weeks ago
|
using TaskManager.Contracts.Dtos;
|
||
|
using TaskManager.Entity;
|
||
|
using TaskManager.Entity.Entitys;
|
||
|
using TaskManager.EntityFramework;
|
||
|
|
||
|
namespace TaskManager.Controllers
|
||
|
{
|
||
|
public class CherySupplierProMaterialDataService : CheryRecurringJobInputPageController<SUPPLIER_PRO_MATERIAL_DATA, SUPPLIER_PRO_MATERIAL_DATA_DTO>
|
||
|
{
|
||
|
public CherySupplierProMaterialDataService(HttpClient httpClient, JobDbContext jobDbContext, LogController log, IRepository<SUPPLIER_PRO_MATERIAL_DATA> repository) : base(httpClient, jobDbContext, log, repository)
|
||
|
{
|
||
|
|
||
|
}
|
||
|
}
|
||
|
}
|