Пример #1
0
        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);
            }
        }
Пример #3
0
        public async Task <bool> InsertEmpresa(TbEmpresa empresa)
        {
            try
            {
                context.Add(empresa);
                await context.SaveChangesAsync();

                return(true);
            }
            catch (Exception ex)
            {
                return(false);
            }
        }
Пример #4
0
        public async Task <bool> InsertUsuario(TbUsuario usuario)
        {
            try
            {
                context.Add(usuario);
                await context.SaveChangesAsync();

                return(true);
            }
            catch (Exception)
            {
                return(false);
            }
        }