Exemplo n.º 1
0
 public DetailsModel(IUserNotesService notesService)
 {
     this.notesService = notesService;
 }
Exemplo n.º 2
0
 public DeleteModel(IUserNotesService notesService)
 {
     this.notesService = notesService;
 }
Exemplo n.º 3
0
 public CreateModel(IUserNotesService notesService, IUserRecipeService recipeService)
 {
     this.notesService  = notesService;
     this.recipeService = recipeService;
 }
Exemplo n.º 4
0
 public UserController(IUserNotesService userNotesService, IMapper mapper, IFileConverter <Note> converter)
 {
     _userNotesService = userNotesService;
     _mapper           = mapper;
     _converter        = converter;
 }
Exemplo n.º 5
0
 public NotesModel(IUserNotesService notesService)
 {
     this.notesService = notesService;
 }