public async Task UpdateAsync(TP_OrderLogEntity entity) { await _tP_OrderLogEntityRepository.UpdateAsync(entity); }
public async Task <TP_OrderLogEntity> CreateAsync(TP_OrderLogEntity entity) { entity.Id = await _tP_OrderLogEntityRepository.InsertAndGetIdAsync(entity); return(entity); }