Esempio n. 1
0
 public PropInjection_Service()
 {
     _rnd = new RandomClass {
         PropInjection_jobDataAccess = new JobDataAccess()
     };
 }
 public ConstInjection_Service()
 {
     _rnd = new RandomClass(new JobDataAccess());
 }
 public MethodInjection_Service()
 {
     _rnd = new RandomClass();
     _rnd.SetDependency(new JobDataAccess());
 }