mirror of
https://github.com/ryzij/ServerMonitor.git
synced 2026-07-14 03:46:58 +00:00
Add MonitorPanel.DataAccess
This commit is contained in:
@@ -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();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user