Exemple #1
0
 public PersonsService(PersonContext context, IFileSignature fileSignatureService,
                       ProfileImageSetting profileImageSetting, SecureRootSetting secureRootSetting)
 {
     _context = context;
     _fileSignatureService = fileSignatureService;
     _profileImageSetting  = profileImageSetting;
     _filesPath            = secureRootSetting.Path;
 }
Exemple #2
0
 public PersonsController(IPersons personsService, ProfileImageSetting profileImageSetting)
 {
     _personsService      = personsService;
     _profileImageSetting = profileImageSetting;
 }