public HomeInfoService(IMapper mapper, IDoacaoService doacaoService, GloballAppConfig globalSettings, IHomeInfoRepository homeRepository, ICausaRepository causaRepotirory) { _mapper = mapper; _doacaoService = doacaoService; _homeRepository = homeRepository; _globalSettings = globalSettings; _causaRepository = causaRepotirory; }
public CausaService(ICausaRepository causaRepository, IMapper mapper) { _mapper = mapper; _causaRepository = causaRepository; }