put in ignore file

This commit is contained in:
2025-08-10 22:01:36 +10:00
parent c2bf5cad70
commit ba79e8f1c4
151 changed files with 21703 additions and 0 deletions
@@ -0,0 +1,19 @@
using FamilyTreeAPI.Models;
namespace FamilyTreeAPI.GraphQL.Query
{
public class QueryFamilyTree
{
[UsePaging]
[UseProjection]
[UseFiltering]
[UseSorting]
public IQueryable<Person> GetPersons([Service] FamilyTreeDBContext dBContext) => dBContext.Persons;
[UsePaging]
[UseProjection]
[UseFiltering]
[UseSorting]
public IQueryable<staff> GetStaffs([Service] FamilyTreeDBContext dBContext) => dBContext.staff;
}
}