17 lines
488 B
C#
17 lines
488 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Traffic.Data.Models;
|
|
|
|
namespace Traffic.Repository.Interfaces
|
|
{
|
|
public interface IMalfunctionRepository
|
|
{
|
|
public IEnumerable<Malfunction> GetMalfunctions();
|
|
public IEnumerable<Malfunction> GetMalfunctions(int userid);
|
|
public IEnumerable<Malfunction> GetMalfunctions(List<string> sitesId, string startTime, string endTime);
|
|
}
|
|
}
|