41 lines
1.1 KiB
C#
41 lines
1.1 KiB
C#
using LSFE.Domain.Contracts;
|
|
using LSFE.Infrastructure.Database;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace LSFE.Domain.Services
|
|
{
|
|
public class GenericRepository<TEntity> where TEntity : class
|
|
{
|
|
protected readonly LSFEDbContext _dbContext;
|
|
|
|
public GenericRepository(LSFEDbContext context)
|
|
{
|
|
_dbContext = context;
|
|
}
|
|
|
|
public async Task<TEntity?> GetByIdAsync(int id) => await _dbContext.Set<TEntity>().FindAsync(id);
|
|
|
|
public async Task<List<TEntity>> GetAllAsync() => await _dbContext.Set<TEntity>().ToListAsync();
|
|
|
|
public async Task AddAsync(TEntity entity)
|
|
{
|
|
await _dbContext.Set<TEntity>().AddAsync(entity);
|
|
}
|
|
|
|
public void Update(TEntity entity)
|
|
{
|
|
_dbContext.Entry(entity).State = EntityState.Modified;
|
|
}
|
|
|
|
public void Remove(TEntity entity)
|
|
{
|
|
_dbContext.Set<TEntity>().Remove(entity);
|
|
}
|
|
}
|
|
}
|