public NoteService(TheOrganizerDBContext db)
 {
     _db = db;
 }
Exemple #2
0
 public UserService(IOptions <AppSettings> appSettings, TheOrganizerDBContext db)
 {
     _appSettings = appSettings.Value;
     _db          = db;
 }
 public TodoService(TheOrganizerDBContext db)
 {
     _db = db;
 }
 public ContactService(TheOrganizerDBContext db)
 {
     _db = db;
 }
Exemple #5
0
 public CalendarService(TheOrganizerDBContext db)
 {
     _db = db;
 }
 public EventService(TheOrganizerDBContext db)
 {
     _db = db;
 }