Beispiel #1
0
 /// <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)
 {
 }
Beispiel #2
0
 public QueryItemHandlerCore(DatabaseContextCore data, IValidationService validationService, IMapper mapper) : base(data, validationService)
 {
     Entities = data.Set <TEntity>();
     Mapper   = mapper;
 }
Beispiel #3
0
 public CommandHandlerCore(DatabaseContextCore db, IValidationService validationService, IMediator mediator)
     : base(db, validationService)
 {
     _mediator = mediator;
 }
Beispiel #4
0
 public QuerySingleHandlerCore(DatabaseContextCore data, IValidationService validationService)
     : base(data, validationService)
 {
 }
Beispiel #5
0
 /// <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)
 {
 }
Beispiel #6
0
        /// <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)
        {
        }
Beispiel #7
0
 /// <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)
 {
 }
Beispiel #8
0
 public CommandCreateHandlerCore(DatabaseContextCore db, IValidationService validationService, IMediator mediator, IMapper mapper)
     : base(db, validationService, mediator)
 {
     Entity = Data.Set <TEntity>();
     Mapper = mapper;
 }
Beispiel #9
0
 /// <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)
 {
 }
Beispiel #10
0
 /// <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>();
 }
Beispiel #12
0
 /// <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) { }
Beispiel #13
0
 public HandlerCore(DatabaseContextCore db, IValidationService validationService)
 {
     Data = db;
     ValidationService = validationService;
 }