示例#1
0
 public FileMgmtController(
     IRepstoriy <DtFile> fileMgmt,
     IHostingEnvironment hostingEnvironment
     )
 {
     _fileMgmt           = fileMgmt;
     _hostingEnvironment = hostingEnvironment;
 }
 public AccountController(
     IRepstoriy <Account> account,
     IMemoryCache cache
     )
 {
     _account = account;
     _cache   = cache;
 }