/*
  * WARNING: This is the quick and easy way to make the controller
  *          use a different LibraryContext - good enough for our purposes.
  *          The "right" way is through Dependency Injection via the constructor
  *          (look this up if interested).
  */
 public void UseLMSContext(Team1LMSContext ctx)
 {
     db = ctx;
 }
 public CommonController()
 {
     db = new Team1LMSContext();
 }