Beispiel #1
0
        public ActionResult GetFilterDownloadedNotes(int NoteId = 0, int SellerId = 0, int BuyerId = 0)
        {
            DownloadedNotesViewModel             Model   = new DownloadedNotesViewModel();
            List <GetDownloadedNotesData_Result> getData = db.GetDownloadedNotesData(NoteId, SellerId, BuyerId).ToList();

            Model.getDownloadedNotesData_Results = getData;
            return(PartialView("_DownloadedNotes", Model));
        }