/// <summary>
 /// Lietotaja kontorliera inicializacijas konstruktors
 /// </summary>
 /// <param name="dataRepostory"> Nodrošina piekļuvi datu bāzes entītijām</param>
 public UserViewController(IDataRepostory dataRepostory)
 {
     this.dataRepostory = dataRepostory;
 }
Example #2
0
 public SuffixesController(IDataRepostory <SuffixModel, long> suffixRepo)
 {
     _suffixRepo = suffixRepo;
 }
Example #3
0
 public StopwordsController(IDataRepostory <StopWordModel, long> stopwordRepo)
 {
     _stopwordRepo = stopwordRepo;
 }
Example #4
0
 public RootsController(IDataRepostory <RootModel, long> rootRepo)
 {
     _rootRepo = rootRepo;
 }
 public PreceController(IDataRepostory dataRepostory)
 {
     this.dataRepostory = dataRepostory;
 }
 public AdminController(IDataRepostory dataRepostory)
 {
     this.dataRepostory = dataRepostory;
 }
 public IznomatajsController(IDataRepostory dataRepostory)
 {
     this.dataRepostory = dataRepostory;
 }
 public InputsController(IDataRepostory <InputModel, long> inputRepo)
 {
     _inputRepo = inputRepo;
 }