public CreateProfileConfirmationCommandHandler(IProfilesContext context)
 {
     _table = new ProfileConfirmationTable(context);
 }
예제 #2
0
 public ProfileConfirmationTable(IProfilesContext _context)
 {
     this._context = _context ?? throw new ArgumentNullException(nameof(_context));
 }
예제 #3
0
 public CreatePersonPhotoCommandHandler(IProfilesContext context)
 {
     _table = new PersonPhotoTable(context);
 }
 public GetPersonDetailsQueryHandler(IProfilesContext context)
 {
     _table = new PersonDetailsTable(context);
 }
 public GetProfileConfirmationQueryHandler(IProfilesContext context)
 {
     _table = new ProfileConfirmationTable(context);
 }
예제 #6
0
 public PersonPhotoTable(IProfilesContext _context)
 {
     this._context = _context ?? throw new ArgumentNullException(nameof(_context));
 }
예제 #7
0
 public GetPersonPhotoQueryHandler(IProfilesContext context)
 {
     _table = new PersonPhotoTable(context);
 }
 public UpdatePersonDetailsCommandHandler(IProfilesContext context)
 {
     _table = new PersonDetailsTable(context);
 }
 public ProfileConfirmedRequirement(IProfilesContext context)
 {
     _table = new ProfileConfirmationTable(context);
 }