public void Dispose()
 {
     if (this.context != null)
     {
         this.context.Dispose();
         this.context = null;
     }
 }
 public UserRepository(IdentityTestEntities context)
 {
     this.context = context;
 }