using Notesnook.API.Interfaces; using Notesnook.API.Models; using Notesnook.API.Repositories; using Streetwriters.Common.Models; using Streetwriters.Data.Repositories; namespace Notesnook.API.Accessors { public class SyncItemsRepositoryAccessor : ISyncItemsRepositoryAccessor { public SyncItemsRepository Notes { get; } public SyncItemsRepository Notebooks { get; } public SyncItemsRepository Shortcuts { get; } public SyncItemsRepository Relations { get; } public SyncItemsRepository Reminders { get; } public SyncItemsRepository Contents { get; } public SyncItemsRepository Settings { get; } public SyncItemsRepository Attachments { get; } public Repository UsersSettings { get; } public Repository Monographs { get; } public SyncItemsRepositoryAccessor(SyncItemsRepository _notes, SyncItemsRepository _notebooks, SyncItemsRepository _content, SyncItemsRepository _settings, SyncItemsRepository _attachments, SyncItemsRepository _shortcuts, SyncItemsRepository _relations, SyncItemsRepository _reminders, Repository _usersSettings, Repository _monographs) { Notebooks = _notebooks; Notes = _notes; Contents = _content; Settings = _settings; Attachments = _attachments; UsersSettings = _usersSettings; Monographs = _monographs; Shortcuts = _shortcuts; Reminders = _reminders; Relations = _relations; } } }