FlowAPI / FlowAPI.Infrastructure /Repositories /CustomTemplateRepository.cs
danylokhodus's picture
Implement custom templates and subscription tiers backend changes
7039b6a
Raw
History Blame Contribute Delete
1.23 kB
using FlowAPI.Application.Interfaces;
using FlowAPI.Domain.Entities;
using FlowAPI.Infrastructure.Data;
using Microsoft.EntityFrameworkCore;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace FlowAPI.Infrastructure.Repositories
{
public class CustomTemplateRepository : ICustomTemplateRepository
{
private readonly AppDbContext _context;
public CustomTemplateRepository(AppDbContext context)
{
_context = context;
}
public async Task<CustomTemplate?> GetByIdAsync(Guid id)
{
return await _context.CustomTemplates.FirstOrDefaultAsync(t => t.Id == id);
}
public async Task<IEnumerable<CustomTemplate>> GetByUserIdAsync(Guid userId)
{
return await _context.CustomTemplates
.Where(t => t.UserId == userId)
.OrderByDescending(t => t.CreatedAt)
.ToListAsync();
}
public async Task<CustomTemplate> CreateAsync(CustomTemplate template)
{
_context.CustomTemplates.Add(template);
await _context.SaveChangesAsync();
return template;
}
}
}