/// <summary> /// Class XtrmAddons Fotootof Libraries SQLite Info Types Entities Manager Constructor. /// </summary> /// <param name="context">A database context core.</param> public InfoTypeManager(DatabaseContextCore context) : base(context) { }
public QueryItemHandlerCore(DatabaseContextCore data, IValidationService validationService, IMapper mapper) : base(data, validationService) { Entities = data.Set <TEntity>(); Mapper = mapper; }
public CommandHandlerCore(DatabaseContextCore db, IValidationService validationService, IMediator mediator) : base(db, validationService) { _mediator = mediator; }
public QuerySingleHandlerCore(DatabaseContextCore data, IValidationService validationService) : base(data, validationService) { }
/// <summary> /// Class XtrmAddons Fotootof SQLite Entity Manager Albums Constructor. /// </summary> /// <param name="context">A database connector <see cref="DatabaseContextCore"/></param> public AlbumManager(DatabaseContextCore context) : base(context) { }
/// <summary> /// /// </summary> //public DatabaseContextCore Db => Connector as DatabaseContextCore; #endregion #region Constructors /// <summary> /// Class XtrmAddons Fotootof SQLite Entity Manager AclGroups Constructor. /// </summary> /// <param name="context">A database connector <see cref="DatabaseContextCore"/></param> public AclGroupManager(DatabaseContextCore context) : base(context) { }
/// <summary> /// Class XtrmAddons Fotootof SQLite Entities Manager Sections Constructor. /// </summary> /// <param name="context">A database connector <see cref="DatabaseContextCore"/></param> public SectionManager(DatabaseContextCore context) : base(context) { }
public CommandCreateHandlerCore(DatabaseContextCore db, IValidationService validationService, IMediator mediator, IMapper mapper) : base(db, validationService, mediator) { Entity = Data.Set <TEntity>(); Mapper = mapper; }
/// <summary> /// Class XtrmAddons Fotootof SQLite Entities Manager Users Constructor. /// </summary> /// <param name="context">A database connector <see cref="DatabaseContextCore"/></param> public VersionManager(DatabaseContextCore context) : base(context) { }
/// <summary> /// Class XtrmAddons Fotootof SQLite Entity Manager Pictures Constructor. /// </summary> /// <param name="context">A database connector <see cref="DatabaseContextCore"/></param> public PictureManager(DatabaseContextCore context) : base(context) { }
public CommandRemoveHandlerCore(DatabaseContextCore db, IValidationService validationService, IMediator mediator) : base(db, validationService, mediator) { Entity = Data.Set <TEntity>(); }
/// <summary> /// Class XtrmAddons Fotootof SQLite Entity Manager Users Constructor. /// </summary> /// <param name="context">A database connector <see cref="DatabaseContextCore"/></param> public UserManager(DatabaseContextCore context) : base(context) { }
public HandlerCore(DatabaseContextCore db, IValidationService validationService) { Data = db; ValidationService = validationService; }