public void GetNullId()
 {
     try
     {
         ut.GetById(null);
         Assert.False(true, "should have failed GetById(null) with exception :-(");
     }
     catch (BadArgumentException e)
     {
         output.WriteLine("Received expected exception when retrieving with null Id : " + e.Message);
     }
 }