public void AddUserToGroup(int userGroupId, int userId)
 {
     using (DelightServiceClient service = new DelightServiceClient())
     {
         service.AddUserToGroup(userGroupId, userId);
     }
 }