public int BolumDelete(Bolum Bolum)
        {
            BolumDal Bolumdal = new BolumDal();

            if (Bolum.BolumId != 0)
            {
                return(Bolumdal.BolumDelete(Bolum));
            }
            return(-1);
        }