Example #1
0
        public async Task <bool> DeleteEmpresa(int id)
        {
            try
            {
                var tbEmpresa = await context.TbEmpresa.FindAsync(id);

                context.TbEmpresa.Remove(tbEmpresa);
                await context.SaveChangesAsync();

                return(true);
            }
            catch (Exception)
            {
                return(false);
            }
        }
Example #2
0
        public async Task <bool> DeleteVenda(int id)
        {
            try
            {
                var tbVendas = await context.TbVendas.FindAsync(id);

                context.TbVendas.Remove(tbVendas);
                await context.SaveChangesAsync();

                return(true);
            }
            catch (Exception)
            {
                return(false);
            }
        }
        public async Task <bool> DeleteUsuario(int id)
        {
            try
            {
                var tbUsuario = await context.TbUsuario.FindAsync(id);

                context.TbUsuario.Remove(tbUsuario);
                await context.SaveChangesAsync();

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