Beispiel #1
0
 public EventsController(IShowBillUnitOfWork uoW, IMapper mapper)
 {
     this.uoW            = uoW;
     this.metaRepository = uoW.MetaRepository;
     this.mapper         = mapper;
     this._pageSize      = 10;
 }
Beispiel #2
0
 public ShowBillUnitOfWork(ShowBillDbContext dbContext)
 {
     this._context  = dbContext;
     MetaRepository = new EventMetaRepository(_context);
 }