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.
17 lines
555 B
17 lines
555 B
3 weeks ago
|
using TaskManager.Contracts.Dtos;
|
||
|
using TaskManager.Controllers;
|
||
|
using TaskManager.Entity;
|
||
|
using TaskManager.EntityFramework;
|
||
|
|
||
|
|
||
|
namespace TaskManager.Controllers
|
||
|
{
|
||
|
//奇瑞RDC共享库存
|
||
3 weeks ago
|
public class SupplierInvDataService : CheryRecurringJobOutPageController<SUPPLIER_INV_DATA, SUPPLIER_INV_DATA_DETAIL_DTO>
|
||
3 weeks ago
|
{
|
||
|
public SupplierInvDataService(HttpClient httpClient, JobDbContext jobDbContext, LogController log, IRepository<SUPPLIER_INV_DATA> repository) : base(httpClient, jobDbContext, log, repository)
|
||
|
{
|
||
|
}
|
||
|
}
|
||
|
}
|