public TypeInsuranceController(ITypeInsuranceService typeInsuranceService, IMapper mapper)
 {
     _typeInsuranceService = typeInsuranceService;
     _mapper = mapper;
 }
 public TypeInsuranceController(ITypeInsuranceService typeInsuranceService, IMapper mapper, ILogService log)
 {
     _typeInsuranceService = typeInsuranceService;
     _mapper = mapper;
     _log    = log;
 }