Exemplo n.º 1
0
        public ActionResult GetChatRoomsLabelsList()
        {
            var labels = ChatRoomConversionHelper.ChatRoomLabelsToViewModel(chatRoomLogic.GetChatRoomsLabels());

            return(PartialView("~/Views/Shared/ChatRoomsLabelsList.cshtml", labels));
        }
Exemplo n.º 2
0
        public ActionResult ChatRoomsList()
        {
            var labels = ChatRoomConversionHelper.ChatRoomLabelsToViewModel(chatRoomLogic.GetChatRoomsLabels());

            return(View(labels));
        }