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 LinqToSqlOrmFramework(IDataStore dataStore, RequestContext context) : base(context.Zeus.Output) { this._dataStore = dataStore; this._context = context; this._database = context.Database; this._dialog = context.Dialog; }
public EntityFrameworkDbContextRepositoryOrmFrameworkBase(IDataStore dataStore, RequestContext context, EFCriteria criteria) : base(context.Zeus.Output) { this._criteria = criteria; this._dataStore = dataStore; this._context = context; this._database = context.Database; this._dialog = context.Dialog; }
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; }