Files
StructureHelper/StructureHelperCommon/Infrastructures/Interfaces/IRepository.cs
2025-06-07 19:37:37 +05:00

14 lines
260 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StructureHelperCommon.Infrastructures.Interfaces
{
public interface IRepository
{
void ClearRepository();
}
}