예제 #1
0
 public GenericMVCController(
     IGenericRepositoryRead repositoryRead,
     IGenericDomainService service,
     IUnitOfWork uoW)
     : base()
 {
     this.repositoryRead = repositoryRead;
     this.service        = service;
     this.uoW            = uoW;
 }