NoKnownName 3fafc10742 Projekt
2025-05-23 10:36:56 +02:00

19 lines
378 B
C#

using Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Interfaces
{
public interface IMapRepository
{
Map GetById(string id);
List<Map> GetBySessionId(string sessionId);
Map Add(Map map);
Map Update(Map map);
bool Delete(string id);
}
}