Esempio n. 1
0
 public static EKITAP Select(int _ID)
 {
     if (_ID > 0)
     {
         return(FKITAP.Select(_ID));
     }
     return(null);
 }
Esempio n. 2
0
 public static bool Update(EKITAP item)
 {
     if (item.ID > 0 && item.ADI != null && item.ADI.Trim().Length > 0 && item.KATEGORIID > 0 && item.SAYFASAYISI > 0)// TRİM BOŞLKLARI KALDIRIYOR.
     {
         return(FKITAP.Update(item));
     }
     return(false);
 }
Esempio n. 3
0
 public static bool Delete(int _ID)
 {
     if (_ID > 0)
     {
         return(FKITAP.Delete(_ID));
     }
     return(false);
 }
Esempio n. 4
0
 public static int Insert(EKITAP item)
 {
     if (item.ADI != null && item.ADI.Trim().Length > 0 && item.KATEGORIID > 0 && item.SAYFASAYISI > 0)// TRİM BOŞLKLARI KALDIRIYOR.
     {
         return(FKITAP.Insert(item));
     }
     return(-1);
 }
Esempio n. 5
0
        }//EndOfInsert()

        public static bool Update(EKITAP item)
        {
            if (item.ID > 0 && item.ADI != null && item.ADI.Trim().Length > 0 && item.KATEGORIID > 0 && item.SAYFASAYISI > 0)
            {
                return(FKITAP.Update(item));
            }
            return(false);
        }//EndOfUpdate()
Esempio n. 6
0
 public static int Insert(EKITAP item)
 {
     if (item.ADI != null && item.ADI.Trim().Length > 0 && item.KATEGORIID > 0 && item.SAYFASAYISI > 0)
     {
         return(FKITAP.Insert(item));
     }
     return(-1);
 }//EndOfInsert()
Esempio n. 7
0
 public static int Insert(EKITAP item)
 {
     if (item.KITAPADI1 != null)
     {
         return(FKITAP.Insert(item));
     }
     else
     {
         return(-1);
     }
 }
Esempio n. 8
0
 public static List <EKITAP> SelectList()
 {
     return(FKITAP.SelectList());
 }
 public static List <EKITAP> SelectList()
 {
     return(FKITAP.SelectList());
     //Console.WriteLine("BİZDEN NE OLUR:((");
 }