public AspNetMvcUILayerObjects(RequestContext context, IAutoMapperFramework autoMapperFramework) : base(context.Zeus.Output)
 {
     this._autoMapperFramework = autoMapperFramework;
     this._context             = context;
     this._dialog   = context.Dialog;
     this._database = context.Database;
 }
 public AspNetMvcUILayerObjects(RequestContext context, IAutoMapperFramework autoMapperFramework)
     : base(context.Zeus.Output)
 {
     this._autoMapperFramework = autoMapperFramework;
     this._context = context;
     this._dialog = context.Dialog;
     this._database = context.Database;
 }
示例#3
0
 public AspNetMvcUILayerObjectsForDbContextBase(RequestContext context, IAutoMapperFramework autoMapperFramework, UICriteria criteria)
     : base(context.Zeus.Output)
 {
     this._criteria            = criteria;
     this._autoMapperFramework = autoMapperFramework;
     this._context             = context;
     this._dialog   = context.Dialog;
     this._database = context.Database;
 }
 public EntitySpacesOrmFramework(IDataStore dataStore, RequestContext context, IAutoMapperFramework autoMapperFramework)
     : base(context.Zeus.Output)
 {
     this._dataStore = dataStore;
     this._context = context;
     this._database = context.Database;
     this._dialog = context.Dialog;
     this._commonGenerators = new CommonGenerators(context);
     this._autoMapperFramework = autoMapperFramework;
 }
 public EntitySpacesOrmFramework(IDataStore dataStore, RequestContext context, IAutoMapperFramework autoMapperFramework)
     : base(context.Zeus.Output)
 {
     this._dataStore           = dataStore;
     this._context             = context;
     this._database            = context.Database;
     this._dialog              = context.Dialog;
     this._commonGenerators    = new CommonGenerators(context);
     this._autoMapperFramework = autoMapperFramework;
 }
        public EntityFrameworkOrmFramework(IDataStore dataStore, RequestContext context, IAutoMapperFramework autoMapperFramework)
            : base(context.Zeus.Output)
        {
            if (dataStore == null)
                throw new ApplicationException("EntityFrameworkOrmFramework dataStore");

            this._autoMapperFramework = autoMapperFramework;
            this._dataStore = dataStore;
            this._context = context;
            this._database = context.Database;
            this._dialog = context.Dialog;
        }
示例#7
0
        public EntityFrameworkOrmFramework(IDataStore dataStore, RequestContext context, IAutoMapperFramework autoMapperFramework)
            : base(context.Zeus.Output)
        {
            if (dataStore == null)
            {
                throw new ApplicationException("EntityFrameworkOrmFramework dataStore");
            }

            this._autoMapperFramework = autoMapperFramework;
            this._dataStore           = dataStore;
            this._context             = context;
            this._database            = context.Database;
            this._dialog = context.Dialog;
        }
示例#8
0
 public AspNetMvcUILayerObjectsForDbContextBase(RequestContext context, IAutoMapperFramework autoMapperFramework)
     : this(context, autoMapperFramework, new UICriteria())
 {
 }