public AccelerationController(IAccelerationService service, IMapper mapper)

        {

            _service = service;

            _mapper = mapper;

        }
Ejemplo n.º 2
0
 public AccelerationController(IAccelerationService service, IMapper mapper)
 {
     this.service = service;
     this.mapper  = mapper;
 }
Ejemplo n.º 3
0
 public AccelerationController(IAccelerationService accelerationService, IMapper mapper)
 {
     _mapper = mapper;
     _accelerationService = accelerationService;
 }
 public AccelerationController(IAccelerationService service, IMapper mapper)
 {
     _service = service;
     _mapper  = mapper;
     _serviceConvertToListDTO = new ConvertToListDTO <Acceleration, AccelerationDTO>(mapper);
 }