예제 #1
0
 internal void AddAPI(MyCartes api)
 {
     if (apis.IndexOf(api) < 0)
     {
         apis.Add(api);
         if (ProjectId.Length > 0)
         {
             api.Load();
         }
     }
 }
예제 #2
0
 internal void DeleteAPI(MyCartes api)
 {
     apis.Remove(api);
 }