public async Task <List <b_target_car_type> > Get()
 {
     return(await _b_target_car_typeServices.Query());
 }
Beispiel #2
0
        public async Task <List <b_target_car_type> > Get()
        {
            Expression <Func <b_target_car_type, bool> > whereExpression = a => a.IsDeleted != true;

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