コード例 #1
0
ファイル: chatController.cs プロジェクト: parineeti/CRM
        public PartialViewResult getChatnewById(int UserId, int maxid, int aid)
        {
            chatServices _chat  = new Database.chatServices();
            chatModel    _model = new Models.chatModel();

            _model = _chat.getChatByContactId(UserId, aid, maxid);
            return(PartialView("GetNewChat", _model));
        }
コード例 #2
0
ファイル: chatController.cs プロジェクト: parineeti/CRM
        public PartialViewResult getChatById(int UserId, int aid)
        {
            chatServices _chat  = new Database.chatServices();
            chatModel    _model = new Models.chatModel();

            _model     = _chat.getChatByContactId(UserId, aid);
            _model.aId = aid;
            return(PartialView("getChatById", _model));
        }