Exemplo n.º 1
0
        }//EndOfInsert()

        public static bool Update(EKATEGORI item)
        {
            if (item.ID > 0 && item.ADI != null && item.ADI.Trim().Length > 0)
            {
                return(FKATEGORI.Update(item));
            }
            return(false);
        }//EndOfUpdate()
Exemplo n.º 2
0
 public static bool Update(EKATEGORI item)
 {
     if (item.ID > 0 && item.ADI != null && item.ADI.Trim().Length > 0)// TRİM BOŞLKLARI KALDIRIYOR.
     {
         return(FKATEGORI.Update(item));
     }
     return(false);
 }