@Logging
@Caching(expiration = Caching.TEN_MINUTES)
public CorporationSheetDto getCorporationSheet(Long corporationID) throws EveApiException {
try {
ApiCorporationSheetResponse response = facade.getCorporationSheet(corporationID);
ApiCorporationSheetResult apiCorporationSheetResult = response.getResult();
return mapper.map(apiCorporationSheetResult, CorporationSheetDto.class);
} catch (ApiErrorException e) {
logger.warn("Caught ApiErrorException", e.getMessage());
throw new EveApiException(e);
} catch (ApiParserException e) {