public SessionService(ISessionRepository sessionRepository, IUnitOfWork unitOfWork, IHistoryRepository historyRepository, IEquipamentSessionRepository equipamentSessionRepository, ITagSessionRepository tagSessionRepository)
 {
     _sessionRepository           = sessionRepository;
     _unitOfWork                  = unitOfWork;
     _historyRepository           = historyRepository;
     _equipamentSessionRepository = equipamentSessionRepository;
     _tagSessionRepository        = tagSessionRepository;
 }
Exemplo n.º 2
0
 public EquipamentSessionService(IEquipamentSessionRepository equipamentSessionRepository, IUnitOfWork unitOfWork)
 {
     _equipamentSessionRepository = equipamentSessionRepository;
     _unitOfWork = unitOfWork;
 }