Exemplo n.º 1
0
 public GuestsController()
 {
     Context = new HotelsContext();
 }
Exemplo n.º 2
0
 public GuestsController(IHotelsContext context)
 {
     Context = context;
 }
Exemplo n.º 3
0
 public HotelsManager(IHotelsContext hotelsContext)
 {
     //here we either initialise a context services or the repository for simplicity
     this.hotelsContext = hotelsContext;
 }