public Task <IEnumerable <ICustomerProfile> > GetByCustomerIdsAsync(IEnumerable <string> ids, bool includeNotVerified = false, bool includeNotActive = false)
 {
     return(_customerProfileRepository.GetByIdsAsync(ids, includeNotVerified, includeNotActive));
 }