/// <summary>
 /// Constructor TypeIdentification Controller
 /// </summary>
 /// <param name="TypeIdentificationService"></param>
 public TypeIdentificationController(ITypeIdentificationService TypeIdentificationService)
 {
     _TypeIdentificationService = TypeIdentificationService;
 }
 public TypeIdentificationController(ITypeIdentificationService typeIdentificationService, IMapper mapper)
 {
     _typeIdentificationService = typeIdentificationService;
     _mapper = mapper;
 }
Exemplo n.º 3
0
 public TypeIdentificationController(ITypeIdentificationService typeIdentificationService)
 {
     _typeIdentificationService = typeIdentificationService;
 }