17 lines
381 B
C#
17 lines
381 B
C#
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<ImageLabel>, IImageLabelRepository
|
|
{
|
|
public ImageLabelRepository(IRaCISDBContext db) : base(db)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|