示例#1
0
 public ReportLogic(IKomlectLogic KomlectLogic, IComponentLogic componentLogic,
                    IOrderLogic orderLLogic)
 {
     this.KomlectLogic   = KomlectLogic;
     this.componentLogic = componentLogic;
     this.orderLogic     = orderLLogic;
 }
 public FormCreateOrder(IKomlectLogic logicP, IClientLogic logicC, MainLogic logicM)
 {
     InitializeComponent();
     this.logicP = logicP;
     this.logicC = logicC;
     this.logicM = logicM;
     this.logicC = logicC;
 }
示例#3
0
 public FormKomlects(IKomlectLogic logic)
 {
     InitializeComponent();
     this.logic = logic;
 }
 public MainController(IOrderLogic order, IKomlectLogic product, MainLogic main)
 {
     _order   = order;
     _product = product;
     _main    = main;
 }