Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
OliverQueenArrowTheBest committed Oct 22, 2022
2 parents bd33671 + abfe6e1 commit 53f3506
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions NationalLibrary/Metodi/DataQueries.cs
Original file line number Diff line number Diff line change
Expand Up @@ -355,6 +355,13 @@ public static List<Request> SelectAllFromRL(LibraryContext ctx)

return wlview.ToList();
}
public static List<Rent> SelectAllFromReL(LibraryContext ctx)
{
var wlview = from x in ctx.Rents
select x;

return wlview.ToList();
}

////////////////// QUERY MANIPOLAZIONE AFFITTI \\\\\\\\\\\\\\\\\\\\\\
public static void InsertRent(Guid BookGuid, string FiscalCode, LibraryContext ctx)
Expand Down

0 comments on commit 53f3506

Please sign in to comment.