Пример #1
0
        public frmAuction()
        {
            InitializeComponent();

            isLoged = false;
            auctionLog = new AuctionLog(false);
            orderPageHandle = new OrderPageHandle(auctionLog);
            orderPageHandleOld = new OrderPageHandleOld(auctionLog);
            orderPageHandleQuestion = new OrderPageHandleQuestion(auctionLog);
            productPageHandle = new ProductPageHandle(auctionLog);
            auctionOperations = new AuctionOperations(auctionLog);
        }
Пример #2
0
        public frmAuction()
        {
            InitializeComponent();

            isLoged                 = false;
            auctionLog              = new AuctionLog(false);
            orderPageHandle         = new OrderPageHandle(auctionLog);
            orderPageHandleOld      = new OrderPageHandleOld(auctionLog);
            orderPageHandleQuestion = new OrderPageHandleQuestion(auctionLog);
            productPageHandle       = new ProductPageHandle(auctionLog);
            auctionOperations       = new AuctionOperations(auctionLog);
        }
Пример #3
0
 public OrderPageHandleOld(AuctionLog auctionLog)
 {
     this.auctionLog   = auctionLog;
     auctionOperations = new AuctionOperations(auctionLog);
     checkCodeForm     = new CheckCodeForm();
 }
 public OrderPageHandle(AuctionLog auctionLog)
 {
     this.auctionLog = auctionLog;
     auctionOperations = new AuctionOperations(auctionLog);
     checkCodeForm = new CheckCodeForm();
 }