示例#1
0
        // GET: Chat
        public ActionResult Index()
        {
            FakeDb fakeDb = FakeDb.Instance;
            List <ChatMetier.Entities.Chat> chats = fakeDb.GetAll();

            return(View(chats));
        }
 public List <Product> GetAll()
 {
     return(fakeDb.GetAll().ToList());
 }