public List <Log> GetLogs() { var action = new GetLogsAction(dbContext); return(action.Get()); }
public List <Log> GetLogs(DateTime startTime, DateTime endTime) { var action = new GetLogsAction(dbContext); return(action.Get(startTime, endTime)); }
public List <Log> GetLogs(String searchWord) { var action = new GetLogsAction(dbContext); return(action.Get(searchWord)); }
public List <Log> GetLogs(String searchWord, DateTime startTime, DateTime endTime) { var action = new GetLogsAction(dbContext); return(action.Get(searchWord, startTime, endTime)); }