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