Ejemplo n.º 1
0
 public ListModel(IPrincipalQueryService queryService)
 {
     this.queryService = queryService;
 }
Ejemplo n.º 2
0
 public MovieQueryService(IPrincipalQueryService queryService, MovieDbContext db)
 {
     this.queryService = queryService;
     this.db           = db;
 }
Ejemplo n.º 3
0
 public ConfirmDeleteModel(IPrincipalQueryService queryService,
                           IPrincipalCommandService commandService)
 {
     this.queryService   = queryService;
     this.commandService = commandService;
 }
Ejemplo n.º 4
0
 public EditModel(IPrincipalQueryService queryService,
                  IPrincipalCommandService commandService)
 {
     this.queryService   = queryService;
     this.commandService = commandService;
 }
Ejemplo n.º 5
0
 public MovieQueryService(IPrincipalQueryService queryService)
 {
     this.queryService = queryService;
 }