ENEI2019-Public/api/Data/IEventLocsRepository.cs

16 lines
325 B
C#
Raw Permalink Normal View History

2019-03-06 19:17:36 +00:00
using System.Collections.Generic;
using System.Threading.Tasks;
using api.Models;
namespace api.Data
{
public interface IEventLocsRepository
{
Task<IEnumerable<EventLoc>> GetEventLocs();
Task<EventLoc> GetEventLoc(int id);
2019-03-07 17:33:15 +00:00
Task<List<EventLoc>> GetEventLocEvent(int id);
2019-03-06 19:17:36 +00:00
}
}