示例#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 MiscController(IMiscRepo repo, IUnitOfWork uow)
 {
     this.repo = repo;
     this.uow  = uow;
 }
 public BookInstResourceClientValidator(IBookDefRepo bookDefRepo, IMiscRepo miscRepo)
 {
     this.miscRepo    = miscRepo;
     this.bookDefRepo = bookDefRepo;
 }