add examples domain_01

This commit is contained in:
28810
2019-03-05 18:16:25 +08:00
parent 45ba67ed15
commit f9fef12d37
14 changed files with 280 additions and 1 deletions

View File

@ -7,7 +7,7 @@ using System.Threading.Tasks;
namespace repository_01.Repositorys {
public class SongRepository : BaseRepository<Song, int> {
public SongRepository(IFreeSql fsql) : base(fsql) {
public SongRepository(IFreeSql fsql) : base(fsql, null) {
}
}
}