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