Esempio n. 1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="AccountController"/> class.
 /// </summary>
 /// <param name="studentService">The student service.</param>
 /// <param name="typeService">The type service.</param>
 public AccountController(
     IStudentAppService studentService,
     ITypeAppService typeService,
     IUserAppService userAppService)
     : base(userAppService)
 {
     this._studentService = studentService;
     this._typeService    = typeService;
     this._userService    = userAppService;
 }
Esempio n. 2
0
 public TypeController(ITypeAppService typeAppService)
 {
     _typeAppService = typeAppService;
 }