예제 #1
0
        public frmAddBook(string bookCode)
        {
            InitializeComponent();

            Functions.customMaterialForm(this);

            this.bookCode = bookCode;

            busBook = new BUSbook();
        }
예제 #2
0
        public frmManager(users user)
        {
            InitializeComponent();

            // Gọi custom form dùng material skin
            Functions.customMaterialForm(this);

            // Tạo đối tượng bus book
            busBook = new BUSbook();

            // Gán đối tượng user
            this.user = user;
        }