Esempio n. 1
0
        public async Task <List <b_car_status> > Get()
        {
            Expression <Func <b_car_status, bool> > whereExpression = a => a.IsDeleted != true;

            return(await _b_car_statusServices.Query(whereExpression));
        }
Esempio n. 2
0
 public async Task <List <b_car_status> > Get()
 {
     return(await _b_car_statusServices.Query());
 }