Exemplo n.º 1
0
 protected internal KntKMessageService(IKntRepository repository)
 {
     _repository = repository;
 }
Exemplo n.º 2
0
 public KntService(IKntRepository repository)
 {
     _repository  = repository;
     IdServiceRef = Guid.NewGuid();
 }
Exemplo n.º 3
0
 protected internal KntKEventService(IKntRepository repository)
 {
     _repository = repository;
 }
Exemplo n.º 4
0
 protected internal KntSystemValuesService(IKntRepository repository)
 {
     _repository = repository;
 }
Exemplo n.º 5
0
 protected internal KntKAttributeService(IKntRepository repository)
 {
     _repository = repository;
 }
Exemplo n.º 6
0
 protected internal KntUserService(IKntRepository repository)
 {
     _repository = repository;
 }
Exemplo n.º 7
0
 public KntNoteTypeService(IKntRepository repository)
 {
     _repository = repository;
 }
Exemplo n.º 8
0
 public KntService(ILogService log, IRexsRepository rexsRepo, IKntRepository kntRepo)
     : base(log)
 {
     _rexsRepo = rexsRepo;
     _kntRepo  = kntRepo;
 }