public ContractorsController(ContractorsService cs, JobsService js, ReviewsService rs)
 {
     _service        = cs;
     _jobsService    = js;
     _reviewsService = rs;
 }
 public JobsController(JobsService js, ContractorsService cs)
 {
     _js = js;
     _cs = cs;
 }
 public ContractorsController(ContractorsService cs, BidsService bs)
 {
     _cs = cs;
     _bs = bs;
 }
Exemple #4
0
 public ContractorsController(ContractorsService contractorsService)
 {
     _contractorsService = contractorsService;
 }
 public ContractorsController(ContractorsService service)
 {
     _service = service;
 }
Exemple #6
0
 public ContractorsController(ContractorsService cs)
 {
     _cs = cs;
 }
Exemple #7
0
 public ContractorsController(ContractorsService service, JobsService jservice)
 {
     _service  = service;
     _jservice = jservice;
 }
 public JobsController(JobsService jservice, ContractorsService cservice)
 {
     _jservice = jservice;
     _cservice = cservice;
 }
Exemple #9
0
 public ContractorsController(ContractorsService serv, JobsService jserv)
 {
     _serv  = serv;
     _jserv = jserv;
 }
Exemple #10
0
 public ContractorsController(ContractorsService service, BidsService bidsService)
 {
     _service     = service;
     _bidsService = bidsService;
 }
Exemple #11
0
 public ContractorsController(ContractorsService cs, JobsService js)
 {
     _cs = cs;
     _js = js;
 }
Exemple #12
0
 public JobsController(JobsService js, ContractorsService cs)
 {
     _service    = js;
     _conService = cs;
 }
 public ContractorsController(ContractorsService service, JobsService pserv)
 {
     _service = service;
     _pserv   = pserv;
 }