Esempio n. 1
0
        public ActionResult ExpertUpdate(short id)
        {

            ExpertVM model = new ExpertVM();
            model.Expert = _expertService.FindExpert(x => x.ExpertID == id);
            model.Contact = _contactService.Find(x => x.ExpertID == id && x.IsActive == true);
            ExpCOnId = model.Contact.ContactID;

            return View(model);

        }