public PersonState(ICookieCRUD cookieCrud, IPersonCommand personCommand, IPersonQuery personQuery, ITeacherQuery teacherQuery, ITeacherCommand teacherCommand, IStudentQuery studentQuery, IStudentCommand studentCommand)
 {
     this.cookieCRUD     = cookieCrud;
     this.personQuery    = personQuery;
     this.personCommand  = personCommand;
     this.teacherCommand = teacherCommand;
     this.teacherQuery   = teacherQuery;
     this.studentCommand = studentCommand;
     this.studentQuery   = studentQuery;
 }
Esempio n. 2
0
 public GetPersonInternalByIdHandler(IPersonQuery personQuery)
 {
     this._personQuery = personQuery;
 }
 public GetAddressesHandler(IPersonQuery personQuery, IClientDbContext context)
 {
     _personQuery = personQuery;
     _context     = context;
 }
Esempio n. 4
0
 public PersonCRUD(IPersonCommand personCommand, IPersonQuery personQuery)
 {
     this.personCommand = personCommand;
     this.personQuery   = personQuery;
 }
 public PersonListViewModel(IPersonQuery qry)
 {
     personQuery = qry;
 }
Esempio n. 6
0
 public GetIdHandler(IPersonQuery personQuery)
 {
     this._personQuery = personQuery;
 }