public void CheckName() { Store store = new Store("SX", "name1test", "here"); Store find = handler.GetStorebyName("name1test"); Assert.IsNull(find); Assert.IsFalse(handler.IsStoreExistAndActive("name1test")); toDeleteStore = store; handler.AddStore(store); Assert.IsTrue(handler.IsStoreExistAndActive("name1test")); }
private void CheckIfStoreExistsAndActive(string _storename) { if (!storeLogic.IsStoreExistAndActive(_storename)) { throw new StoreException(ViewStoreStatus.NoStore, "store not exists or active"); } }
private void CheckIfStoreExitsts(string store) { if (!storeLogic.IsStoreExistAndActive(store)) { throw new StoreException(StoreEnum.StoreNotExists, "store not exists or active"); } }
protected void checkIfStoreExistsAndActive() { if (!DataLayerInstance.IsStoreExistAndActive(_storeName)) { throw new StoreException(StoreEnum.StoreNotExists, "store not exists or active"); } }
private void CheckIfStoreExistsAndActive(string _storename) { if (!_storeLogic.IsStoreExistAndActive(_storename)) { throw new StoreException(GetCategoriesDiscountStatus.NoStore, "store not exists or active"); } }
private void CheckIfStoreExists(string storename) { if (!storeLogic.IsStoreExistAndActive(storename)) { MarketLog.Log("StoreCenter", "store do not exists"); throw new StoreException(StoreEnum.StoreNotExists, "store not exists or active"); } }