Beispiel #1
0
 public SoftwareController(
     IMapper mapper,
     IRetornoHelper retornoHelper,
     IValidator <Software> validator,
     ISoftwareService softwareService)
 {
     _mapper          = mapper;
     _retornoHelper   = retornoHelper;
     _validator       = validator;
     _softwareService = softwareService;
 }
Beispiel #2
0
 public UsuarioController(
     IRetornoHelper retornoHelper,
     IMapper mapper,
     IUsuarioService usuarioService,
     IValidator<Usuario> validator)
 {
     _retornoHelper = retornoHelper;
     _mapper = mapper;
     _usuarioService = usuarioService;
     _validator = validator;
 }