コード例 #1
0
 public void RemoveStore(int storeId)
 {
     StoreContainer.RemoveStore(storeId);
 }
コード例 #2
0
 private void Awake()
 {
     Instance = this;
     Hide();
 }
コード例 #3
0
 public Store ModifyStore(Store store)
 {
     return(StoreContainer.UpdateStore(store));
 }
コード例 #4
0
 public Store GetById(int storeId)
 {
     return(StoreContainer.GetById(storeId));
 }
コード例 #5
0
 public IEnumerable <Store> GetAll()
 {
     return(StoreContainer.GetAll());
 }
コード例 #6
0
 public bool DoesStoreExists(int storeId)
 {
     return(StoreContainer.DoesStoreExists(storeId));
 }
コード例 #7
0
 public Store AddStore(Store store)
 {
     return(StoreContainer.AddStore(store));
 }