15 lines
408 B
C#
15 lines
408 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq.Expressions;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
using xDataService.Interfaces;
|
|
using xModels.Dtos;
|
|
using xStringService.Models.Dtos;
|
|
using xStringService.Models.Entities;
|
|
|
|
namespace xStringService.Interfaces.Dtos
|
|
{
|
|
public interface IXStringRepositoryService : IXBaseRepositoryService<XString, XStringDto, int>
|
|
{ }
|
|
} |