Exemplo n.º 1
0
        public ActionResult CustomerHome()
        {
            Contact currentCustomer = (Contact)Session["currentUser"];

            ViewBag.projects = _projectFactory.GetProjectsByContact(currentCustomer.GUID).OrderByDescending(p => p.EstimatedDeliveryDate);
            return(View());
        }