public CreateSerieCommand(SeriePathManager galleryPathManager, AddItemsToSerieCommand addItemsToSerieCommand, SFContext context)
     : base(addItemsToSerieCommand, context)
 {
     _context                = context;
     _seriePathManager       = galleryPathManager;
     _addItemsToSerieCommand = addItemsToSerieCommand;
 }
Exemple #2
0
 public EditSerieCommand(AddItemsToSerieCommand addItemsToSerieCommand, SFContext context)
     : base(addItemsToSerieCommand, context)
 {
     _context = context;
 }
 public BaseSerieCommand(AddItemsToSerieCommand addItemsToSerieCommand, SFContext context)
 {
     _addItemsToSerieCommand = addItemsToSerieCommand;
     _context = context;
 }