public USER_PLANT_MAP GetByUserPlantNppbkcId(UserPlantMapGetByUserPlantNppbkcIdParamInput input)
 {
     return
         (_repository.Get(
              c => c.PLANT_ID == input.PlantId && c.USER_ID == input.UserId && c.NPPBKC_ID == input.NppbkcId, null, _includeTables)
          .FirstOrDefault());
 }
示例#2
0
 public USER_PLANT_MAP GetByUserPlantNppbkcId(UserPlantMapGetByUserPlantNppbkcIdParamInput input)
 {
     return(_userPlantService.GetByUserPlantNppbkcId(input));
 }