Beispiel #1
0
 public static void AddCellToActionMatrix(IActionMatrix actionMatrix,
     IRoutingItemCollection senderAddressCollection, IRoutingItemCollection recipientAddressCollection)
 {
     if (!actionMatrix.HasCell(senderAddressCollection, recipientAddressCollection))
     {
         actionMatrix[senderAddressCollection, recipientAddressCollection] =
             ActionMatrixCellFactory(senderAddressCollection, recipientAddressCollection);
     }
 }