refactor: Projektdateien migriert. Cloud-NuGet-Pakete durch lokale NuGet-Projekte ersetzt.

This commit is contained in:
Developer 02
2024-08-01 18:44:39 +02:00
parent 0d82f7af6f
commit 62ddd4873f
206 changed files with 10927 additions and 1 deletions

View File

@@ -0,0 +1,34 @@
using DAL.Models.Entities;
using DAL.Models.Filters;
using HRD.WebApi.Repositories;
using Microsoft.EntityFrameworkCore;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace DAL.Repositories
{
public class WindreamInputFolderRepository : BaseRepository<WindreamInputFolder>
{
public WindreamInputFolderRepository() : base(new WebApiContext())
{
}
public async Task<List<WindreamInputFolder>> GetListByFilterAsync(WindreamInputFolderFilter filter, bool asNoTracking = true)
{
var items = this.RepositoryContext.Set<WindreamInputFolder>().AsQueryable();
if (filter.WindreamInputFolderId != null && filter.WindreamInputFolderId != 0)
{
items = items.Where(x => x.WindreamInputFolderId == filter.WindreamInputFolderId);
return asNoTracking ? await items.ToListAsync() : await items.ToListAsync();
}
if (filter.ClientId != null)
{
items = items.Where(x => x.ClientId == filter.ClientId);
}
return asNoTracking ? await items.AsNoTracking().ToListAsync() : await items.ToListAsync();
}
}
}