예제 #1
0
        protected override void Dispose(bool disposing)
        {
            base.Dispose(disposing);

            headController.Dispose();
            positionController.Dispose();

            headController     = null;
            positionController = null;
        }
예제 #2
0
 public InvoiceController(ControllerObject controller) : base(controller)
 {
     headController     = new InvoiceHeadController(this);
     positionController = new InvoicePositionController(this);
 }
예제 #3
0
 public InvoiceController(IContext context) : base(context)
 {
     headController     = new InvoiceHeadController(this);
     positionController = new InvoicePositionController(this);
 }