public CounterPartyController(ICounterPartyService counterPartyService)
 {
     CounterPartyService = counterPartyService;
 }
예제 #2
0
 public ManagerController(ICounterPartyService counterPartyService, ICPProductService cPProductService)
 {
     _counterPartyService = counterPartyService;
     _cPProductService    = cPProductService;
 }
예제 #3
0
 public ManagerController(ICounterPartyService counterPartyService)
 {
     _counterPartyService = counterPartyService;
 }
 public CounterPartyManagerController(ICounterPartyListService counterPartyListService, ICounterPartyCifService counterPartyCifService, ICounterPartyService counterPartyService)
 {
     _counterPartyListService = counterPartyListService;
     _counterPartyCifService  = counterPartyCifService;
     _counterPartyService     = counterPartyService;
 }