public bool deleteKullanici(string kullaniciİd)
        {
            string sorgu = string.Format("delete from kullanıcılar where id='" + kullaniciİd + "'");


            return(bağlanti.exucuteDeleteQuery(sorgu));
        }
        public bool deleteStok(string stokİd)
        {
            string sorgu = string.Format("delete from Stok where id='" + stokİd + "'");


            return(bağlanti.exucuteDeleteQuery(sorgu));
        }
Ejemplo n.º 3
0
        public bool deleteSiparis(string siparisİd)
        {
            string sorgu = string.Format("delete from Siparis where id='" + siparisİd + "'");


            return(bağlanti.exucuteDeleteQuery(sorgu));
        }