using Infrastructure.Entities;
namespace Infrastructure.Repositories;
public interface ITrainingProgramRepository : IRepository<TrainingProgram>
{
}