Ejemplo n.º 1
0
 public async Task <List <d_study_record> > Get()
 {
     return(await _d_study_recordServices.Query());
 }
Ejemplo n.º 2
0
        public async Task <List <d_study_record> > Get()
        {
            Expression <Func <d_study_record, bool> > whereExpression = a => a.IsDeleted != true;

            return(await _d_study_recordServices.Query(whereExpression));
        }