示例#1
0
 public PostsController()
 {
     repo = new FireRepo <Post>(authentication, baseurl, $"{typeof(Post).Name.ToString()}/");
 }
示例#2
0
 public FirebaseDataAccess()
 {
     _repo = new FireRepo <T>(_authentication, _baseurl, $"{typeof(T).Name}/");
 }