I am currently refactoring our messy controllers. We have a lot of SelectLists in our controllers. I want a way make it easier to maintain our code base. What would be a good solution a Factory Method, Interface or Base Class? We a lot of these methods floating around our code.
private SelectList getRateContract(IEnumerable items)
{
return new SelectList(items, Resources.RSINET.RateContractID, Resources.RSINET.ContractName);
}