18 lines
435 B
C#
18 lines
435 B
C#
using CarParkValidationAPI.Models;
|
|
using CarParkValidationAPI.Entities;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
namespace CarParkValidationAPI.Interface
|
|
{
|
|
public interface ILookupCode
|
|
{
|
|
Task<ResultModel<List<LookupCodeDto>>> LoadConcessionTypeAsync(bool OnlyActive);
|
|
Task<ResultModel<List<LookupCodeDto>>> LoadValidationPointAsync(bool OnlyActive);
|
|
|
|
}
|
|
}
|