All checks were successful
Docker Build & Deploy / Cleanup Dangling Images (push) Successful in 2s
Docker Build & Deploy / WeChat Notification (push) Successful in 2s
Docker Build & Deploy / Build Docker Image (push) Successful in 22s
Docker Build & Deploy / Deploy to Production (push) Successful in 10s
38 lines
1.1 KiB
C#
38 lines
1.1 KiB
C#
namespace Repository;
|
|
|
|
public interface IBudgetArchiveRepository : IBaseRepository<BudgetArchive>
|
|
{
|
|
Task<BudgetArchive?> GetArchiveAsync(int year, int month);
|
|
|
|
Task<List<BudgetArchive>> GetListAsync(int year, int month);
|
|
|
|
Task<List<BudgetArchive>> GetArchivesByYearAsync(int year);
|
|
}
|
|
|
|
public class BudgetArchiveRepository(
|
|
IFreeSql freeSql
|
|
) : BaseRepository<BudgetArchive>(freeSql), IBudgetArchiveRepository
|
|
{
|
|
public async Task<BudgetArchive?> GetArchiveAsync(int year, int month)
|
|
{
|
|
return await FreeSql.Select<BudgetArchive>()
|
|
.Where(a => a.Year == year &&
|
|
a.Month == month)
|
|
.ToOneAsync();
|
|
}
|
|
|
|
public async Task<List<BudgetArchive>> GetListAsync(int year, int month)
|
|
{
|
|
return await FreeSql.Select<BudgetArchive>()
|
|
.Where(a => a.Year == year && a.Month == month)
|
|
.ToListAsync();
|
|
}
|
|
|
|
public async Task<List<BudgetArchive>> GetArchivesByYearAsync(int year)
|
|
{
|
|
return await FreeSql.Select<BudgetArchive>()
|
|
.Where(a => a.Year == year)
|
|
.OrderBy(a => a.Month)
|
|
.ToListAsync();
|
|
}
|
|
} |