示例#1
0
 public BaseCommand(IAppAmbientState ambientState)
 {
     this.appAmbientState = ambientState;
 }
 public MovieController(IAppAmbientState ambientState, IMovieServices movieServices)
 {
     this.ambientState  = ambientState;
     this.movieServices = movieServices;
 }
 public GetMovieStatsQuery(IAppAmbientState ambientState) : base(ambientState)
 {
 }
 public CreateMoviesCommand(IAppAmbientState ambientState) : base(ambientState)
 {
 }
示例#5
0
 public BaseQuery(IAppAmbientState ambientState)
 {
     this.appAmbientState = ambientState;
     //this.movieDbContext = new MovieDbContext();
 }
示例#6
0
 public DeleteMovieCommand(IAppAmbientState ambientState) : base(ambientState)
 {
 }
示例#7
0
 public MovieEntity(IAppAmbientState appAmbient)
 {
     this.appAmbientState = appAmbient;
 }