public DetailsModel(IUserNotesService notesService)
 {
     this.notesService = notesService;
 }
 public DeleteModel(IUserNotesService notesService)
 {
     this.notesService = notesService;
 }
 public CreateModel(IUserNotesService notesService, IUserRecipeService recipeService)
 {
     this.notesService  = notesService;
     this.recipeService = recipeService;
 }
Beispiel #4
0
 public UserController(IUserNotesService userNotesService, IMapper mapper, IFileConverter <Note> converter)
 {
     _userNotesService = userNotesService;
     _mapper           = mapper;
     _converter        = converter;
 }
 public NotesModel(IUserNotesService notesService)
 {
     this.notesService = notesService;
 }