using IRaCIS.Core.Domain.Interfaces; using IRaCIS.Core.Domain.Models; using System; using System.Collections.Generic; using System.Text; namespace IRaCIS.Core.Infra.EFCore.Repository { public class ImageLabelRepository : BaseRepository, IImageLabelRepository { public ImageLabelRepository(IRaCISDBContext db) : base(db) { } } }