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

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

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

            return(View(model));
        }