コード例 #1
0
 public ApiCore(string myApiKey, IBusinessCoreGuid <TEnity> business, Adapter mapper, IDistributedCache cache)
 {
     Business = business;
     Mapper   = mapper;
     Cache    = cache;
     MyApiKey = myApiKey;
 }
コード例 #2
0
 public BooksController(IBusinessCoreGuid <Book> business, Adapter mapper, IDistributedCache redis) : base("Book", business, mapper, redis)
 {
 }
コード例 #3
0
 public AuthorsController(IBusinessCoreGuid <Author> business, Adapter mapper, IDistributedCache redis) : base("Author", business, mapper, redis)
 {
 }
コード例 #4
0
 public SeriesController(IBusinessCoreGuid <Serie> business, Adapter mapper, IDistributedCache redis) : base("Serie", business, mapper, redis)
 {
 }