示例#1
0
        public static void Main(string[] args)
        {
            BirdDatabase  db = new BirdDatabase();
            UserInterface ui = new UserInterface(db);

            ui.Start();
        }
示例#2
0
 public UserInterface(BirdDatabase db)
 {
     this.db = db;
 }
示例#3
0
 public UserInterface(BirdDatabase database)
 {
     this.database = database;
 }