mirror of
https://github.com/nsnail/FreeSql.git
synced 2025-04-27 05:02:50 +08:00
14 lines
305 B
C#
14 lines
305 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, null) {
|
|
}
|
|
}
|
|
}
|