/
n1kolas
/
NoteCreator
Обзор
Документация
Войти
/
n1kolas
/
NoteCreator
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
Services/INoteService.cs
18 строк
401 B
Nicolai
Added core functionality to program
05 окт 2025, 22:32
05 окт 2025, 22:32
48a91e7
Код
Авторство
О чём код?
using LogIn.Data.Models; using System; using System.Collections.Generic; using System.Collections.ObjectModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace LogIn.Services { public interface INoteService { ObservableCollection<Note>? Notes { get; } bool Add(Note note); bool Remove(Note note); Note? GetById(int Id); } }