Exemplo n.º 1
0
 public ContractsController(ICommonContractService commonServiceParam, IT1ContractService t1ServiceParam,
                            IT2ContractService t2ServiceParam)
 {
     commonService = commonServiceParam;
     t1Service     = t1ServiceParam;
     t2Service     = t2ServiceParam;
 }
Exemplo n.º 2
0
 public CommonContractService(IT1ContractService t1ServiceParam, IT2ContractService t2ServiceParam,
                              ILocationService locationServiceParam, ICustomerService cusServiceParam)
 {
     t1Service       = t1ServiceParam;
     t2Service       = t2ServiceParam;
     locationService = locationServiceParam;
     customerService = cusServiceParam;
 }