Exemple #1
0
        public async Task <ActionResult <IEnumerable <Calculadora> > > GetCalculadora()
        {
            var operaciones = await _repo.GetAll();

            return(Ok(operaciones));
        }
 public IQueryable <СalculatorStatistics> GetAll()
 {
     return(calculatorRepo.GetAll());
 }