public void UpdateStore(Store store) { _storeRepository.UpdateStore(store); }
public void UpdateStore(Store store) { var updateStore = _stores.First(s => s.Id == store.Id); if (updateStore != null) { updateStore.City = store.City; updateStore.Id = store.Id; updateStore.Name = store.Name; updateStore.Number = store.Number; updateStore.State = store.State; } }
public void Post(Store store) { _storeService.UpdateStore(store); }