public GetPeopleRelationAmountsHandler(IUnitOfPersonRegister unit) => this.unit = unit;
示例#2
0
 public UpdatePersonHandler(IUnitOfPersonRegister unit, IMapper mapper) => (this.unit, this.mapper) = (unit, mapper);
 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);