2025-04-21 14:10:27 +08:00

40 lines
984 B
C#

using System;
using System.Collections.Generic;
using System.IO;
using System.Text;
namespace MyCode.Project.Generate.Template
{
public class TemplateForRepositoryInterface:BaseTemplate
{
public TemplateForRepositoryInterface(string tablename):base(tablename)
{
base.SavePath = Path.Combine(FileUtils.GetSolutionPath(), "MyCode.Project.Domain", "Repositories", $"I{base.GetHumpTableName(tablename)}Repository.cs");
base.TemplateContent = $@"using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using MyCode.Project.Infrastructure;
using MyCode.Project.Domain;
using MyCode.Project.Domain.Model;
using MyCode.Project.Infrastructure.Common;
using MyCode.Project.Domain.Message;
namespace MyCode.Project.Domain.Repositories
{{
public interface I{GetHumpTableName(tablename)}Repository : IRepository<{tablename}>
{{
}}
}}
";
}
}
}