public GetPeopleRelationAmountsHandler(IUnitOfPersonRegister unit) => this.unit = unit;
Esempio n. 2
0
 public UpdatePersonHandler(IUnitOfPersonRegister unit, IMapper mapper) => (this.unit, this.mapper) = (unit, mapper);
 public DeleteRelatedPersonHandler(IUnitOfPersonRegister unit) => this.unit = unit;
Esempio n. 4
0
 public AddRelatedPersonCommand(IUnitOfPersonRegister unit) => this.unit = unit;
Esempio n. 5
0
 public AddNewRelatedPersonHandler(IUnitOfPersonRegister unit, IMapper mapper) => (this.unit, this.mapper) = (unit, mapper);
Esempio n. 6
0
 public GetPersonByIdHandler(IUnitOfPersonRegister unit, IMapper mapper) => (this.unit, this.mapper) = (unit, mapper);
Esempio n. 7
0
 public UploadPhotoHandler(IFileService fileService, IUnitOfPersonRegister unit) => (this.fileService, this.unit) = (fileService, unit);