internal static void RemoveMemory(Store objectValue)
 {
     if (DicStore.ContainsKey(objectValue.Id))
     {
         DicStore.Remove(objectValue.Id);
     }
 }
 public static bool IsExistStore(int id)
 {
     if (DicStore.ContainsKey(id))
     {
         return(true);
     }
     return(false);
 }
 public static Store GetStore(int id)
 {
     if (DicStore.ContainsKey(id))
     {
         return(DicStore[id].Clone() as Store);
     }
     LogTo.Error("Not get Store by id = " + id);
     return(null);
 }