mirror of
https://github.com/dotnetcore/FreeSql.git
synced 2026-03-20 04:50:55 +08:00
14 lines
299 B
C#
14 lines
299 B
C#
using FreeSql;
|
|
using restful.Entitys;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace repository_01.Repositorys {
|
|
public class SongRepository : BaseRepository<Song, int> {
|
|
public SongRepository(IFreeSql fsql) : base(fsql) {
|
|
}
|
|
}
|
|
}
|