コード例 #1
0
ファイル: ProjectService.cs プロジェクト: justseven/MicroTask
 public ProjectService(IProjectRespository repository)
 {
     this.repository = repository;
 }
コード例 #2
0
 public ProjectController(IProjectRespository repo, IConfiguration config)
 {
     _repo   = repo;
     _config = config;
 }
コード例 #3
0
        //private static object _queryLock;

        public ProjectService(IProjectRespository repository, IRedisCacheManager cache)
        {
            this.repository = repository;
            this.cache      = cache;
        }