mirror of
https://github.com/nsnail/FreeSql.git
synced 2025-06-18 20:08:15 +08:00
add examples repository_01
This commit is contained in:
13
Examples/repository_01/Repositorys/SongRepository.cs
Normal file
13
Examples/repository_01/Repositorys/SongRepository.cs
Normal file
@ -0,0 +1,13 @@
|
||||
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) {
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user