public async Task <CustomersStatisticListModel> GetCustomersStatisticsByDayAsync(DateTime fromDate, DateTime toDate)
 {
     return(await _transactionHistoryRepository.GetActiveCustomersStatisticAsync(fromDate, toDate));
 }