Beispiel #1
0
        static void Main(string[] args)
        {
            //Example of console application to test some services of the Persistence layer
            //Important: App.config must contain the database connection string

            VehicleRentalDAL           myDAL    = VehicleRentalDAL.getVehicleRentalDAL();
            IBranchOfficeDAO           boDAO    = myDAL.branchofficeDAO;
            ICollection <BranchOffice> boffices = boDAO.findAllBranchOffices();

            foreach (BranchOffice bo in boffices)
            {
                Console.WriteLine("ID: " + bo.Id + " Address: " + bo.address);
            }
            Console.WriteLine("Pres Key to exit...");
            Console.ReadKey();
        }
Beispiel #2
0
 private BusinessController()
 {
     dal = VehicleRentalDAL.getVehicleRentalDAL();
 }