Exemplo n.º 1
0
 public CreateStairsCommand(
     IStairsRepository stairsRepository,
     IRoomService roomService)
 {
     this.stairsRepository = stairsRepository;
     this.roomService      = roomService;
 }
Exemplo n.º 2
0
 public GetAllStairsQuery(IStairsRepository stairsRepository)
 {
     this.stairsRepository = stairsRepository;
 }
Exemplo n.º 3
0
 public DeleteStairsCommand(
     IStairsRepository stairsRepository)
 {
     this.stairsRepository = stairsRepository;
 }