Exemple #1
0
 public Part1()
 {
     instructionsRepository = new InstructionsRepository();
     houses = new Houses();
 }
 public InstructionsService()
 {
     instructionsRepositoryG = new GenericRepository <Instructions>();
     instructionsRepository  = new InstructionsRepository();
 }
 public static InstructionsRepository GetInstructionsRepository(IUnitOfWork unitOfWork)
 {
     var repository = new InstructionsRepository();
     repository.UnitOfWork = unitOfWork;
     return repository;
 }
Exemple #4
0
 public Part2()
 {
     instructionsRepository = new InstructionsRepository();
     code = new Code();
 }