Ejemplo n.º 1
0
 public HomeController(BaseAppService baseAppSvc, TransactionService txnSvc,
                       ContactService cntctSvc, MessagesServices msgSvc, AccountServices AccSvc)
 {
     _baseAppSvc = baseAppSvc;
     _txnSvc     = txnSvc;
     _cntctSvc   = cntctSvc;
     _msgSvc     = msgSvc;
     _AccSvc     = AccSvc;
 }
Ejemplo n.º 2
0
 protected void ExecuteService(BaseAppService service, Button button)
 {
     service.AppButtonService  = new ButtonService(this, button);
     service.AppTextBoxService = textBoxService;
     AppServiceHelper.RunThread(service);
 }
Ejemplo n.º 3
0
 public ProductApiController(BaseAppService baseAppSvc)
 {
     _baseAppSvc = baseAppSvc;
 }
Ejemplo n.º 4
0
 private void ExecuteService(BaseAppService service, Button button)
 {
     service.AppButtonService  = new ButtonService(this, button);
     service.AppTextBoxService = textBoxService;
     AppServiceHelper.Run(service);
 }