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.

25 lines
905 B

2 months ago
using TaskManager.Contracts.Dtos;
using TaskManager.Controllers;
using TaskManager.Entity;
using TaskManager.Entity.Entitys;
using TaskManager.EntityFramework;
namespace TaskManager.Controllers
{
public class CherySupplierSinvDataService : CheryRecurringJobInputPageExtendController<SUPPLIER_SINV_DATA, SUPPLIER_SINV_DATA_DTO, SUPPLIER_SINV_DATA_LOGS>
2 months ago
{
public CherySupplierSinvDataService(HttpClient httpClient, JobDbContext jobDbContext, LogController log, IRepository<SUPPLIER_SINV_DATA> repository) : base(httpClient, jobDbContext, log, repository)
{
}
2 weeks ago
protected override Task DtoProperiesConvert(List<SUPPLIER_SINV_DATA_DTO> dtos)
{
dtos.ForEach(dto =>
{
dto.DataUpdateTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
});
return base.DtoProperiesConvert(dtos);
}
2 months ago
}
}