public InitializeDatabaseService(MappingObjectsExerciseContext context)
 {
     this.context = context;
 }
예제 #2
0
 public ManagerController(IMapper mapper, MappingObjectsExerciseContext context)
 {
     this.mapper  = mapper;
     this.context = context;
 }
예제 #3
0
 public EmployeeController(MappingObjectsExerciseContext context, IMapper mapper)
 {
     this.context = context;
     this.mapper  = mapper;
 }