/* * 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). */ // TODO: Uncomment and change 'X' after you have scaffoled // Done public void UseLMSContext(Team59LMSContext ctx) { db = ctx; }
public CommonController() { db = new Team59LMSContext(); }