Esempio n. 1
0
        public bool DeleteStore(int id)
        {
            Store delCus = storeDAL.GetStoreById(id);

            if (null == delCus)
            {
                return(true);
            }
            return(storeDAL.DeleteStore(delCus));
        }
Esempio n. 2
0
 public int Delete(int id)
 {
     return(objStore.DeleteStore(id));
 }
Esempio n. 3
0
 public int Delete(int id)
 {
     return(ObjectStore.DeleteStore(id));
 }