using System.Collections.Generic; namespace Neo.Afx.ComponentModel { /// /// Implements the controller context for admin view controllers /// public interface IAdminController { /// /// Gets the list containing data. /// IEnumerable GetDataList(Dictionary args); /// /// Gets the viewmodel database class object. /// object GetById(object id); /// /// Gets the viewmodel database class object collection. /// object GetLookups(); } }