14 lines
361 B
C#
14 lines
361 B
C#
using Estara.Core.Models;
|
|
|
|
namespace Estara.Core.Contracts.Services;
|
|
|
|
// Remove this class once your pages/features are using your data.
|
|
public interface ISampleDataService
|
|
{
|
|
Task<IEnumerable<SampleOrder>> GetContentGridDataAsync();
|
|
|
|
Task<IEnumerable<SampleOrder>> GetGridDataAsync();
|
|
|
|
Task<IEnumerable<SampleOrder>> GetListDetailsDataAsync();
|
|
}
|