public Task <List <ShortUrlModel> > GetAllShortUrlOfAUser(long accountId)
 {
     return(_shortUrlRepository.Find(x => x.CreatorId == accountId));
 }