У вас может быть связыватель модели, который выполняет разбиение (как упоминал Питер), или вы можете использовать JavaScript для добавления скрытых полей с одинаковыми именами для всех значений. Что-то вроде:
<input type="hidden" name="customers" value="102" />
<input type="hidden" name="customers" value="123" />
<input type="hidden" name="customers" value="187" />
<input type="hidden" name="customers" value="298" />
<input type="hidden" name="customers" value="456" />
Тогда ваше действие будет принимать перечисление типа int:
public ActionResult DoSomethingWithCustomers(IEnumerable<int> customers){....}