Beispiel #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="UserManager"/> class
 /// </summary>
 /// <param name="context"></param>
 /// <param name="hManager">The hobby manager to user</param>
 public UserManager(GeneralContext context, HobbyManager hManager)
 {
     this.context  = context;
     this.hManager = hManager;
 }
Beispiel #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="UserManager"/> class
 /// </summary>
 /// <param name="context"></param>
 public UserManager(GeneralContext context)
 {
     this.context  = context;
     this.hManager = new HobbyManager(context, this);
 }