Example #1
0
 public LogActionServices(ILogActionRepository Repository, IUnitOfWork unitOfWork)
 {
     this._Repository = Repository;
     this._unitOfWork = unitOfWork;
 }
Example #2
0
 public ContentServices(IContentRepository Repository, ILogActionRepository RepositoryLogAction, IUnitOfWork unitOfWork)
 {
     this._Repository          = Repository;
     this._RepositoryLogAction = RepositoryLogAction;
     this._unitOfWork          = unitOfWork;
 }
 public AuditAppService(ILogActionRepository logActionRepository)
 {
     _logActionRepository = logActionRepository;
 }
Example #4
0
 public MenuServices(IMenuRepository Repository, IUnitOfWork unitOfWork, ILogActionRepository repositoryLogAction)
 {
     this._Repository          = Repository;
     this._unitOfWork          = unitOfWork;
     this._RepositoryLogAction = repositoryLogAction;
 }
Example #5
0
 public LogActionService(ILogActionRepository repository, ILogActionSubscriptionService subscriptionService)
 {
     _repository          = repository;
     _subscriptionService = subscriptionService;
     _differenceParser    = new EntityDifferenceParser();
 }
Example #6
0
 public LogManager(ILogActionRepository logActionRepository)
 {
     _logActionRepository = logActionRepository;
 }
 public LienKetWebServices(ILienKetWebRepository Repository, IUnitOfWork unitOfWork, ILogActionRepository repositoryLogAction)
 {
     this._Repository          = Repository;
     this._unitOfWork          = unitOfWork;
     this._RepositoryLogAction = repositoryLogAction;
 }
Example #8
0
 public LogActionService(ILogActionRepository iLogActionRepository) : base(iLogActionRepository)
 {
     _ILogActionRepository = iLogActionRepository;
 }