public async Task <bool> InsertVenda(TbVendas vendas) { try { context.Add(vendas); await context.SaveChangesAsync(); return(true); } catch (Exception) { return(false); } }
public async Task <bool> InsertSegmentoEmpresa(TbSegmentoEmpresa segmentoEmpresa) { try { context.Add(segmentoEmpresa); await context.SaveChangesAsync(); return(true); } catch (Exception) { return(false); } }
public async Task <bool> InsertEmpresa(TbEmpresa empresa) { try { context.Add(empresa); await context.SaveChangesAsync(); return(true); } catch (Exception ex) { return(false); } }
public async Task <bool> InsertUsuario(TbUsuario usuario) { try { context.Add(usuario); await context.SaveChangesAsync(); return(true); } catch (Exception) { return(false); } }