Ejemplo n.º 1
0
 public LookupController(ILookupService serv,
                         IDefaults def,
                         IMapper map)
 {
     this.serv = serv;
     this.map  = map;
     this.def  = def;
     ViewBag.configCategories = def.configCategories();
 }
Ejemplo n.º 2
0
 public ActionResult Index()
 {
     ViewBag.configCategories = def.configCategories();
     return(View("~/Views/Lookup/Index.cshtml"));
 }