コード例 #1
0
 public GetPeopleRelationAmountsHandler(IUnitOfPersonRegister unit) => this.unit = unit;
コード例 #2
0
 public UpdatePersonHandler(IUnitOfPersonRegister unit, IMapper mapper) => (this.unit, this.mapper) = (unit, mapper);
コード例 #3
0
 public DeleteRelatedPersonHandler(IUnitOfPersonRegister unit) => this.unit = unit;
コード例 #4
0
 public AddRelatedPersonCommand(IUnitOfPersonRegister unit) => this.unit = unit;
コード例 #5
0
 public AddNewRelatedPersonHandler(IUnitOfPersonRegister unit, IMapper mapper) => (this.unit, this.mapper) = (unit, mapper);
コード例 #6
0
 public GetPersonByIdHandler(IUnitOfPersonRegister unit, IMapper mapper) => (this.unit, this.mapper) = (unit, mapper);
コード例 #7
0
 public UploadPhotoHandler(IFileService fileService, IUnitOfPersonRegister unit) => (this.fileService, this.unit) = (fileService, unit);