Example #1
0
 public ProjectService(IProjectRespository repository)
 {
     this.repository = repository;
 }
Example #2
0
 public ProjectController(IProjectRespository repo, IConfiguration config)
 {
     _repo   = repo;
     _config = config;
 }
Example #3
0
        //private static object _queryLock;

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