public InitializeDatabaseService(MappingObjectsExerciseContext context)
 {
     this.context = context;
 }
Exemplo n.º 2
0
 public ManagerController(IMapper mapper, MappingObjectsExerciseContext context)
 {
     this.mapper  = mapper;
     this.context = context;
 }
Exemplo n.º 3
0
 public EmployeeController(MappingObjectsExerciseContext context, IMapper mapper)
 {
     this.context = context;
     this.mapper  = mapper;
 }