Пример #1
0
        private async Task <IEnumerable <LoyaltyDto> > BuildLoyalty(DateTime startDate, DateTime endDate)
        {
            var subscribers = await _subscriberRepository.GetAllSubscribersInDateRange(startDate, endDate);

            //TODO: Loop and get typeRepository and loyaltyUserRepository
            return(null);
        }