示例#1
0
 public BookDefController(IBookDefRepo repo, IMapper mapper, IBookDefResCliValidator cliValidator, IUnitOfWork uow, IMiscRepo miscRepo)
 {
     this.miscRepo     = miscRepo;
     this.uow          = uow;
     this.cliValidator = cliValidator;
     this.mapper       = mapper;
     this.repo         = repo;
 }
示例#2
0
 public BookInstController(IBookInstRepo repo, IMapper mapper, IBookInstResourceClientValidator resourceClientValidator, IBookDefRepo definitionRepo, IUnitOfWork uow)
 {
     this.uow                     = uow;
     this.definitionRepo          = definitionRepo;
     this.resourceClientValidator = resourceClientValidator;
     this.mapper                  = mapper;
     this.repo                    = repo;
 }
 public BookInstResourceClientValidator(IBookDefRepo bookDefRepo, IMiscRepo miscRepo)
 {
     this.miscRepo    = miscRepo;
     this.bookDefRepo = bookDefRepo;
 }