예제 #1
0
 public Counter GetCounter(string counterId)
 {
     return(_repo.Get(counterId));
 }
예제 #2
0
        public async Task <DomainObjects.Counter> Get()
        {
            var counter = await _counterReposotory.Get();

            return(counter);
        }