Ejemplo n.º 1
0
 public StartController(
     AnkiDbContext context,
     UserManager <ApplicationUser> userManager
     )
 {
     this.context     = context;
     this.userManager = userManager;
 }
Ejemplo n.º 2
0
 public MediaSyncer(
     IMediaManager mediaManager,
     AnkiDbContext context
     )
 {
     this.mediaManager = mediaManager;
     this.context      = context;
 }
 public MediaChangesController(
     AnkiDbContext context,
     UserManager <ApplicationUser> userManager
     )
 {
     this.context     = context;
     this.userManager = userManager;
 }
Ejemplo n.º 4
0
 public CollectionManager(
     AnkiDbContext context,
     Collection collection
     )
 {
     this.context    = context;
     this.collection = collection;
 }
Ejemplo n.º 5
0
 public UploadController(
     AnkiDbContext context,
     UserManager <ApplicationUser> userManager,
     IFullSyncer fullSyncer
     )
 {
     this.context     = context;
     this.userManager = userManager;
     this.fullSyncer  = fullSyncer;
 }
 public ApplyGravesController(
     AnkiDbContext context,
     UserManager <ApplicationUser> userManager,
     ICollectionManagerFactory collectionManagerFactory
     )
 {
     this.context     = context;
     this.userManager = userManager;
     this.collectionManagerFactory = collectionManagerFactory;
 }
Ejemplo n.º 7
0
 public UploadChangesController(
     IMediaSyncer mediaSyncer,
     UserManager <ApplicationUser> userManager,
     AnkiDbContext context
     )
 {
     this.mediaSyncer = mediaSyncer;
     this.userManager = userManager;
     this.context     = context;
 }
Ejemplo n.º 8
0
 public FullSyncer(
     AnkiDbContext context
     )
 {
     this.context = context;
 }
 public CollectionManagerFactory(
     AnkiDbContext context
     )
 {
     this.context = context;
 }