Ejemplo n.º 1
0
 public async Task UpdateAsync(TP_TaskLogEntity entity)
 {
     await _tP_TaskLogEntityRepository.UpdateAsync(entity);
 }
Ejemplo n.º 2
0
        public async Task <TP_TaskLogEntity> CreateAsync(TP_TaskLogEntity entity)
        {
            entity.Id = await _tP_TaskLogEntityRepository.InsertAndGetIdAsync(entity);

            return(entity);
        }