コード例 #1
0
 static void FillDataBaseWithFakeActors(uint count)
 {
     for (int i = 0; i < count; i++)
     {
         ActorController.Add(Actor.GetRandomActor());
     }
 }
コード例 #2
0
        static void InsertActor()
        {
            Actor actor = GetActor();

            ActorController.Add(actor);

            Console.WriteLine("INSERT");
        }