public static tblVehicleFeeSetting CreatetblVehicleFeeSetting(int vehicleTypeId, int goodsTypeId, string branchId)
 {
     tblVehicleFeeSetting tblVehicleFeeSetting = new tblVehicleFeeSetting();
     tblVehicleFeeSetting.VehicleTypeId = vehicleTypeId;
     tblVehicleFeeSetting.GoodsTypeId = goodsTypeId;
     tblVehicleFeeSetting.BranchId = branchId;
     return tblVehicleFeeSetting;
 }
 public void AddTotblVehicleFeeSettings(tblVehicleFeeSetting tblVehicleFeeSetting)
 {
     AddObject("tblVehicleFeeSettings", tblVehicleFeeSetting);
 }