public AuthorsController(IUnitOfWork unitOfWork, IODataService oDataService)
 {
     this.unitOfWork   = unitOfWork;
     this.oDataService = oDataService;
 }
 public CustomerController(IODataService odataService, ILockEntityService lockEntityService)
 {
     this.odataService      = odataService;
     this.lockEntityService = lockEntityService;
 }
Ejemplo n.º 3
0
 public ReaderBooksController(IUnitOfWork unitOfWork, IODataService oDataService)
 {
     this.unitOfWork   = unitOfWork;
     this.oDataService = oDataService;
 }