public Task <UserProfile> GetByIdAsync(string Id, CancellationToken cancellationToken = default)
 {
     return(_context.GetByIdAsync <UserProfile>(Id, cancellationToken));
 }
 public Task <Store> GetByIdAsync(string Id, CancellationToken cancellationToken)
 {
     return(_context.GetByIdAsync <Store>(Id, cancellationToken));
 }