public async Task<ResponseDto.ApOlprrGetIncidentsWithStats> GetIncidentsWithStats(string office, string status, string siteType, string olprrId , int sortColumn, int sortOrder, int pageNumber, int rowsPerPage) { var result = await _lustRepository.ApOlprrGetIncidentsWithStats(office, status, siteType, olprrId, sortColumn, sortOrder, pageNumber, rowsPerPage); return (_mapper.Map<EntityDto.ApOlprrGetIncidentsWithStats, ResponseDto.ApOlprrGetIncidentsWithStats>(result)); }