Newer
Older
SubCabinetSolution / SubCabinetSolution / ViewModel / InquirePageViewModel.cs
using System.Collections.Generic;
using GalaSoft.MvvmLight;
using SubCabinetSolution.Model;

namespace SubCabinetSolution.ViewModel
{
    public class InquirePageViewModel : ViewModelBase
    {
        public List<FunctionModel> InquireModelList { get; set; }

        public InquirePageViewModel()
        {
            this.InquireModelList = new List<FunctionModel>
            {
                new FunctionModel("/Images/库存查询.png", "库存查询"),
                new FunctionModel("/Images/领用未归还.png", "领用未归还"),
                new FunctionModel("/Images/入柜查询.png", "入柜查询"),
                new FunctionModel("/Images/退SPD查询.png", "退SPD查询"),
                new FunctionModel("/Images/指定耗材查询.png", "指定耗材查询"),
                new FunctionModel("/Images/消耗查询.png", "消耗查询"),
                new FunctionModel("/Images/监控查询.png", "监控查询"),
                new FunctionModel("/Images/综合查询.png", "综合查询")
            };
        }
    }
}