From 95a388015ad6126b63487f275a15787bfd744644 Mon Sep 17 00:00:00 2001 From: OlgunR Date: Tue, 21 Apr 2026 10:30:10 +0200 Subject: [PATCH] Remove GetAllAsync method from MassDataRepository The GetAllAsync method, which returned all Massdata records, has been removed from the MassDataRepository class. No other changes were made in this commit. --- DbFirst.Infrastructure/Repositories/MassDataRepository.cs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/DbFirst.Infrastructure/Repositories/MassDataRepository.cs b/DbFirst.Infrastructure/Repositories/MassDataRepository.cs index ba754cc..272c5b7 100644 --- a/DbFirst.Infrastructure/Repositories/MassDataRepository.cs +++ b/DbFirst.Infrastructure/Repositories/MassDataRepository.cs @@ -20,11 +20,6 @@ public class MassDataRepository : IMassDataRepository return await _db.Massdata.AsNoTracking().CountAsync(cancellationToken); } - public async Task> GetAllAsync(CancellationToken cancellationToken = default) - { - return await _db.Massdata.AsNoTracking().ToListAsync(cancellationToken); - } - public async Task GetByCustomerNameAsync(string customerName, CancellationToken cancellationToken = default) { return await _db.Massdata.AsNoTracking()