예제 #1
0
 public LotyController(LotContext _lot, IMapper mapper)
 {
     this._lot   = _lot;
     this.mapper = mapper;
 }
예제 #2
0
 public DodajLoty(LotContext lotContext)
 {
     this.lotContext = lotContext;
 }
예제 #3
0
 public UnitOfWork(string lotContextConnectionString, string lotArchiveContextConnectionString)
 {
     LotContext        = new LotContext(lotContextConnectionString);
     LotArchiveContext = new LotArchiveContext(lotArchiveContextConnectionString);
 }