예제 #1
0
 public void BuildStore()
 {
     MarketDB.Instance.InsertByForce();
     market      = MarketYard.Instance;
     handler     = StoreDL.Instance;
     userService = market.GetUserService();
 }
예제 #2
0
 public static void DeleteStore(long id)
 {
     StoreDL.DeleteStore(id);
 }
예제 #3
0
 public static void UpdateStore(Store store)
 {
     StoreDL.UpdateStore(store);
 }
예제 #4
0
 public static void AddStore(Store store)
 {
     StoreDL.AddStore(store);
 }
예제 #5
0
 public static Store GetStoreById(long id)
 {
     return(StoreDL.GetStoreById(id));
 }
예제 #6
0
 public static IEnumerable <Store> GetAllStores()
 {
     return(StoreDL.GetAllStores());
 }
예제 #7
0
 public void BuildSupplyPoint()
 {
     MarketDB.Instance.InsertByForce();
     handler         = StoreDL.Instance;
     _toDeleteTicket = null;
 }