Exemplo n.º 1
0
 protected ManagerBase(MyselfContext context)
 {
     Context = context;
 }
Exemplo n.º 2
0
 public EntryManager(MyselfContext context, IGoalManager goalManager) : base(context)
 {
     this.goalManager = goalManager;
 }
Exemplo n.º 3
0
 /// <summary>
 /// Initializes a new instance of the <see cref="T:DataLayer.Managers.BadgeCheckers.SilverGoalCheck"/> class.
 /// </summary>
 /// <param name="context">Context.</param>
 public SilverGoalCheck(MyselfContext context) : base(context)
 {
 }
Exemplo n.º 4
0
 /// <summary>
 /// Initializes a new instance of the <see cref="T:DataLayer.Managers.BadgeCheckers.GoldenGoalCheck"/> class.
 /// </summary>
 /// <param name="context">Context.</param>
 public GoldenGoalCheck(MyselfContext context) : base(context)
 {
 }
Exemplo n.º 5
0
 /// <summary>
 /// Initializes a new instance of the <see cref="T:DataLayer.Managers.BadgeCheckers.DataEntryCheck"/> class.
 /// </summary>
 /// <param name="context">Context.</param>
 public DataEntryCheck(MyselfContext context) : base(context)
 {
 }
Exemplo n.º 6
0
 /// <summary>
 ///
 /// </summary>
 /// <param name="context"></param>
 /// <param name="logManager"></param>
 public AuthManager(MyselfContext context, ILogManager logManager) : base(context)
 {
     this.logManager = logManager;
 }
Exemplo n.º 7
0
 /// <summary>
 ///
 /// </summary>
 /// <param name="context"></param>
 /// <param name="badgeCheckers"></param>
 public GoalManager(MyselfContext context, IEnumerable <IBadgeCheck> badgeCheckers) : base(context)
 {
     this.badgeCheckers = badgeCheckers;
 }
Exemplo n.º 8
0
 /// <summary>
 ///
 /// </summary>
 /// <param name="context"></param>
 public TaskManager(MyselfContext context) : base(context)
 {
 }
Exemplo n.º 9
0
 /// <summary>
 /// Initializes a new instance of the <see cref="T:DataLayer.Managers.BadgeCheckers.BadgeCheckBase"/> class.
 /// </summary>
 /// <param name="context">Context.</param>
 protected BadgeCheckBase(MyselfContext context) : base(context)
 {
 }
Exemplo n.º 10
0
 public UserManager(MyselfContext context) : base(context)
 {
 }