Beispiel #1
0
 public PersonsAppService(IAttachmentFilesAppService AttachmentFilesAppService, IUnitOfWorkManager unitOfWorkManager, IRepository <Person> personRepository, IPersonsExcelExporter personsExcelExporter)
 {
     _personRepository          = personRepository;
     _personsExcelExporter      = personsExcelExporter;
     _unitOfWorkManager         = unitOfWorkManager;
     _AttachmentFilesAppService = AttachmentFilesAppService;
 }
 public DiseasesAppService(IAttachmentFilesAppService attachmentFilesAppService, IRepository <Disease> diseaseRepository, IDiseasesExcelExporter diseasesExcelExporter, IRepository <Person, int> lookup_personRepository)
 {
     _diseaseRepository         = diseaseRepository;
     _diseasesExcelExporter     = diseasesExcelExporter;
     _lookup_personRepository   = lookup_personRepository;
     _attachmentFilesAppService = attachmentFilesAppService;
 }
 public AttachmentFilesController(IAttachmentFilesAppService attachmentFilesAppService,
                                  ITempFileCacheManager tempFileCacheManager)
 {
     _attachmentFilesAppService = attachmentFilesAppService;
     _tempFileCacheManager      = tempFileCacheManager;
 }
Beispiel #4
0
 public KkkksController(IAttachmentTypesAppService attachmentTypesAppService, IAttachmentFilesAppService attachmentFilesAppService, IKkkksAppService kkkksAppService)
 {
     _kkkksAppService           = kkkksAppService;
     _attachmentFilesAppService = attachmentFilesAppService;
     _attachmentTypesAppService = attachmentTypesAppService;
 }
Beispiel #5
0
 public PersonsController(IPersonsAppService personsAppService, IAttachmentFilesAppService attachmentFilesAppService, IAttachmentTypesAppService attachmentTypesAppService)
 {
     _personsAppService         = personsAppService;
     _attachmentFilesAppService = attachmentFilesAppService;
     _attachmentTypesAppService = attachmentTypesAppService;
 }
 public DiseasesController(IAttachmentTypesAppService attachmentTypesAppService, IAttachmentFilesAppService attachmentFilesAppService, IDiseasesAppService diseasesAppService)
 {
     _diseasesAppService        = diseasesAppService;
     _attachmentFilesAppService = attachmentFilesAppService;
     _attachmentTypesAppService = attachmentTypesAppService;
 }