Example #1
0
 public static void Initialize(string constr)
 {
     accountDAO   = new AccountDAO(constr);
     guildDAO     = new GuildDAO(constr);
     inventoryDAO = new InventoryDAO(constr);
     playerDAO    = new PlayerDAO(constr);
     questDAO     = new QuestDAO(constr);
     skillDAO     = new SkillsDAO(constr);
 }
Example #2
0
 public static void Initialize(string constr)
 {
     accountDAO = new AccountDAO(constr);
     invenDAO = new InventoryDAO(constr);
     playerDAO = new PlayerDAO(constr);
     questDAO = new QuestDAO(constr);
     Console.WriteLine();
     Console.WriteLine("-------------------------------------------");
 }
Example #3
0
        public static void Initialize(string constr)
        {
            accountDAO = new AccountDAO(constr);
            guildDAO = new GuildDAO(constr);
            inventoryDAO = new InventoryDAO(constr);
            playerDAO = new PlayerDAO(constr);
            questDAO = new QuestDAO(constr);
            skillDAO = new SkillsDAO(constr);

            Console.WriteLine();
        }