Ejemplo n.º 1
0
 public ActionResult Login()
 {
     CommonDomain.ExecProc();
     return(View());
 }
Ejemplo n.º 2
0
 public BaseController()
 {
     _commonDomain = new CommonDomain <T>();
 }
Ejemplo n.º 3
0
        public IAggregate Build(Type type, Guid id, CommonDomain.IMemento snapshot)
        {
            var instance = Activator.CreateInstance(type) as IAggregate;

            return instance;
        }