// GET: AccountType
 public ActionResult Index()
 {
     return(View(_service.GetList()));
 }
Beispiel #2
0
 // GET: api/AccountType
 public IEnumerable <AccountType> Get()
 {
     return(_service.GetList());
 }