/
poliakovD
/
testAdoNetDemoDZ2
Обзор
Документация
Войти
/
poliakovD
/
testAdoNetDemoDZ2
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
ADO.NET.DAL/PostgresRepository.cs
27 строк
474 B
Даниил Поляков
initial
29 мар 2026, 13:15
29 мар 2026, 13:15
c16c8f9
Код
Авторство
О чём код?
using ADO.NET.DAL.Models; namespace ADO.NET.DAL; public class PostgresRepository : ICrud<User> { public User Create(User entity) { throw new NotImplementedException(); } public User Read(int id) { throw new NotImplementedException(); } public User Update(int id, User value) { throw new NotImplementedException(); } public User Delete(int id) { throw new NotImplementedException(); } }