private UserSession FindUserSessionByCartId(Guid aCartId)
 {
     return(UserSessions.Find(session => session.CartId == aCartId));
 }