public async Task InsertarCurrencyHistoryAsync(CurrencyHistoryEntity entity) { logger.LogInformation("Insertar consulta de moneda"); RepositoryCommand.Create(entity); await UnitOfWork.SaveChangesAsync(); }
public async Task InsertarUsuarioAsync(UserEntity user) { RepositoryCommand.Create(user); await UnitOfWork.SaveChangesAsync(); }