Add MonitorPanel.DataAccess

This commit is contained in:
2026-07-08 03:13:21 +03:00
parent 7c4d557dc4
commit 08aa1bbf90
8 changed files with 106 additions and 0 deletions
@@ -0,0 +1,31 @@
using MonitorPanel.Core.Abstractions;
using MonitorPanel.Core.Models;
namespace MonitorPanel.DataAccess.Repositories;
public class ServersRepository : IServersRepository
{
public Task AddServerAsync(Server server)
{
throw new NotImplementedException();
}
public Task DeleteServerAsync(Guid id)
{
throw new NotImplementedException();
}
public Task<IEnumerable<Server>> GetAllServersAsync()
{
throw new NotImplementedException();
}
public Task<Server?> GetServerByIdAsync(Guid id)
{
throw new NotImplementedException();
}
public Task UpdateServerAsync(Guid id, Server server)
{
throw new NotImplementedException();
}
}