Deck list work
This commit is contained in:
@@ -94,6 +94,12 @@ public class GlobalsRepository : IGlobalsRepository
|
||||
.FirstOrDefaultAsync();
|
||||
}
|
||||
|
||||
public Task<List<SpecialDeckFormatEntry>> GetActiveSpecialDeckFormats() =>
|
||||
_dbContext.SpecialDeckFormats.AsNoTracking().OrderBy(e => e.Id).ToListAsync();
|
||||
|
||||
public Task<List<PaymentItemEntry>> GetPaymentItems() =>
|
||||
_dbContext.PaymentItems.AsNoTracking().OrderBy(e => e.Id).ToListAsync();
|
||||
|
||||
public Task<List<MaintenanceCardEntry>> GetMaintenanceCards() =>
|
||||
_dbContext.MaintenanceCards.AsNoTracking().ToListAsync();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user