示例#1
0
        public ActionResult ManageRepresentativeExternalLinks(int repId)
        {
            RepresentativeService   service = new RepresentativeService();
            RepresentativeEditModel model   = service.GetRepresentativeEditModel(repId);

            return(View(model));
        }
示例#2
0
        public ActionResult RepresentativeDetails(int repId)
        {
            var service = new RepresentativeService();
            var model   = service.GetRepresentativeEditModel(repId);

            return(View(model));
        }
示例#3
0
        public ActionResult DeleteRepresentative(int repId)
        {
            RepresentativeService   service = new RepresentativeService();
            RepresentativeEditModel model   = service.GetRepresentativeEditModel(repId);

            return(View(model));
        }