public DeaktivaceOsobService(IOsobaDataSource osobaDataSource, ITerminDataSource terminDataSource, IUnitOfWork unitOfWork, ITimeService timeService)
 {
     this.osobaDataSource  = osobaDataSource;
     this.terminDataSource = terminDataSource;
     this.unitOfWork       = unitOfWork;
     this.timeService      = timeService;
 }
 public TerminFacade(ITerminDataSource terminDataSource, IPrihlaskaDataSource prihlaskaDataSource, IOsobaDataSource osobaDataSource, ITimeService timeService, IUnitOfWork unitOfWork, IEnsureTerminyService ensureTerminyService)
 {
     this.terminDataSource     = terminDataSource;
     this.prihlaskaDataSource  = prihlaskaDataSource;
     this.osobaDataSource      = osobaDataSource;
     this.timeService          = timeService;
     this.unitOfWork           = unitOfWork;
     this.ensureTerminyService = ensureTerminyService;
 }
Exemple #3
0
 public OsobaFacade(IOsobaRepository osobaRepository, IOsobaDataSource osobaDataSource, IUnitOfWork unitOfWork)
 {
     this.osobaRepository = osobaRepository;
     this.osobaDataSource = osobaDataSource;
     this.unitOfWork      = unitOfWork;
 }
Exemple #4
0
 public ReportOsobFacade(IOsobaDataSource osobaDataSource, ITimeService timeService)
 {
     this.osobaDataSource = osobaDataSource;
     this.timeService     = timeService;
 }