public async Task <Anexo> Inserir(DateTime dataLancamento, CadastrarAnexoEntrada cadastroEntrada) { // Realiza o upload do arquivo do anexo para o Google Drive var idGoogleDrive = await RealizarUploadAnexo(dataLancamento, cadastroEntrada); if (this.Invalido) { return(null); } var anexo = new Anexo(cadastroEntrada, idGoogleDrive); await _efContext.AddAsync(anexo); return(anexo); }
public async Task Inserir(Categoria categoria) { await _efContext.AddAsync(categoria); }
public async Task Inserir(Lancamento lancamento) { await _efContext.AddAsync(lancamento); }
public async Task Inserir(Agendamento agendamento) { await _efContext.AddAsync(agendamento); }
public async Task Inserir(Periodo periodo) { await _efContext.AddAsync(periodo); }
public async Task Inserir(LancamentoDetalhe detalhe) { await _efContext.AddAsync(detalhe); }
public async Task Inserir(Pessoa pessoa) { await _efContext.AddAsync(pessoa); }
public async Task Inserir(Fatura fatura) { await _efContext.AddAsync(fatura); }
public async Task Inserir(Atalho atalho) { await _efContext.AddAsync(atalho); }
public async Task Inserir(Conta conta) { await _efContext.AddAsync(conta); }
public async Task Inserir(Parcela parcela) { await _efContext.AddAsync(parcela); }
public async Task Inserir(CartaoCredito cartao) { await _efContext.AddAsync(cartao); }